:root {
    --primary-color: #0056b3;
    --secondary-color: #00356f;
    --accent-color: #ff9800;
    --text-color: #333;
    --light-text: #f4f4f4;
    --bg-color: #f9f9f9;
    --card-bg: #ffffff;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    max-width: 100vw;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2 span {
    color: var(--primary-color);
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

button {
    cursor: pointer;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    transition: var(--transition);
    box-sizing: border-box;
}

.navbar.scrolled {
    background-color: var(--secondary-color);
    padding: 8px 5%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-links a {
    color: white;
}

.navbar.scrolled .nav-links a:hover {
    color: var(--accent-color);
}

.navbar.scrolled .nav-links.active {
    background-color: rgba(0, 53, 111, 0.95);
}

.navbar.scrolled .nav-links.active a {
    color: white;
}

.navbar.scrolled .menu-toggle span {
    background-color: white;
}

.logo-container img {
    height: 50px;
    border-radius: 50%;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-color);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
    position: relative;
    width: 30px;
    height: 25px;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    transition: var(--transition);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
    height: 63vh;
    min-height: 396px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/loja1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light-text);
    padding: 20px 15px;
    opacity: 1;
    transform: none;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    width: 100%;
}

.titulo-hero {
    margin-bottom: 25px;
    font-size: 4rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    max-width: 100%;
    line-height: 1.2;
}

.titulo-hero span {
    color: var(--primary-color);
    display: inline-block;
}

.hero-content h1 {
    margin-bottom: 20px;
    font-size: 4rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content .tagline {
    font-size: 1.4rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.hero-content .destaque {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* About Section */
.sobre-section {
    padding: 100px 0;
    background-color: white;
}

.sobre-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.sobre-text {
    flex: 1;
}

.sobre-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sobre-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.sobre-info {
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    min-width: 25px;
    text-align: center;
}

.info-item .fa-whatsapp {
    color: #25D366;
}

/* Cars Section */
.carros-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.filtro-carros {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.filtro-btn {
    background: none;
    border: none;
    padding: 8px 20px;
    margin: 0 5px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.filtro-btn.active, .filtro-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.carros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.carro-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.carro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.carro-imagem {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.carro-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.carro-card:hover .carro-imagem img {
    transform: scale(1.1);
}

.carro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.carro-card:hover .carro-overlay {
    opacity: 1;
}

.btn-detalhes {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-detalhes:hover {
    background-color: var(--accent-color);
    color: white;
}

.carro-info {
    padding: 20px;
}

.carro-info h3 {
    margin-bottom: 10px;
}

.carro-preco {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.carro-specs {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
}

.carro-specs i {
    color: var(--primary-color);
    margin-right: 5px;
}

.ver-mais {
    text-align: center;
    margin-top: 40px;
}

/* Contact Section */
.contato-section {
    padding: 100px 0;
    background-color: white;
    overflow: hidden;
}

.contato-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    width: 100%;
}

.contato-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
}

.info-card {
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    word-break: break-word;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card .fa-whatsapp {
    color: #25D366;
}

.contato-form {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.2);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-logo p {
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-links h3,
.footer-social h3 {
    color: white;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 0;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a i {
    font-size: 20px;
}

.social-icons a .fa-instagram {
    color: #C13584;
}

.social-icons a .fa-facebook {
    color: #3b5998;
}

.social-icons a .fa-whatsapp {
    color: #25D366;
}

.social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .sobre-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .sobre-image {
        margin-top: 20px;
        width: 100%;
    }
    
    .contato-info {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 5%;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 900;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        display: flex;
    }
    
    .nav-links li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
        color: var(--text-color);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .contato-info {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        height: 54vh;
        min-height: 324px;
        padding: 45px 20px 20px;
    }
    
    .hero-content {
        padding-top: 15px;
    }
    
    .titulo-hero {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .mobile-break {
        display: none;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content .tagline {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .hero-content .destaque {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    
    .hero-section {
        height: 54vh;
        min-height: 288px;
        padding: 50px 15px 20px;
    }
    
    .sobre-image img {
        max-height: 300px;
        object-fit: cover;
        width: 100%;
    }
    
    .container {
        width: 95%;
        padding: 0 10px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h3::after,
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .sobre-section, .contato-section {
        padding-left: 0;
        padding-right: 0;
    }
    
    .titulo-hero {
        font-size: 2.2rem;
        max-width: 100%;
    }
}

@media (max-height: 600px) {
    .hero-section {
        height: 63vh;
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        line-height: 1.1;
    }
    
    h1 span {
        display: inline;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    p {
        font-size: 0.95rem;
    }
    
    .hero-content .tagline {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .hero-content .destaque {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .btn-secondary {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .info-item {
        font-size: 0.9rem;
    }
    
    .info-card h3 {
        font-size: 1.2rem;
    }
    
    .info-card p {
        font-size: 0.9rem;
    }
    
    /* Ajuste para evitar scroll horizontal */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .titulo-hero {
        font-size: 2rem;
        margin-bottom: 5px;
        line-height: 1.1;
    }
    
    .hero-content .tagline {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .hero-content .destaque {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .btn-secondary {
        padding: 8px 20px;
        font-size: 0.8rem;
    }

    .mobile-break {
        display: inline;
    }

    .hero-content {
        padding-top: 20px;
    }
}

@media (max-width: 420px) {
    .titulo-hero span {
        font-size: 1.8rem;
    }
}

@media (max-width: 400px) {
    .titulo-hero {
        font-size: 2.1rem;
    }
    
    .titulo-hero span {
        font-size: 1.7rem;
    }
}

@media (max-width: 380px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .navbar {
        padding: 12px 3%;
    }
    
    .logo-container img {
        height: 40px;
    }
    
    .info-card {
        padding: 15px 10px;
    }
    
    .info-card i {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .sobre-content {
        gap: 20px;
    }
}

@media (max-width: 360px) {
    .titulo-hero {
        font-size: 2rem;
    }
    
    .titulo-hero span {
        font-size: 1.6rem;
    }
}

@media (max-width: 350px) {
    .titulo-hero {
        font-size: 1.9rem;
    }
    
    .titulo-hero span {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }
    
    .hero-section {
        height: 45vh;
        min-height: 252px;
        padding: 60px 15px 20px;
    }
}

@media (max-width: 320px) {
    h1 {
        font-size: 1.3rem;
    }
    
    .hero-content {
        padding: 0 5px;
    }
    
    .hero-content .tagline {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .hero-content .destaque {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .btn-secondary {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .titulo-hero {
        font-size: 1.8rem;
    }
    
    .titulo-hero span {
        font-size: 1.4rem;
        letter-spacing: 0;
    }
}

/* Section Reveal Animation */
section {
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.revealed {
    opacity: 1;
    transform: translateY(0);
}

.mobile-break {
    display: none;
}

/* Seção de Veículos em Destaque */
.veiculos-section {
    padding: 80px 0;
    background-color: #f4f7fa;
    overflow: hidden;
}

/* Estilos do Swiper Carousel */
.veiculos-section .swiper {
    width: 100%;
    padding-bottom: 50px;
    overflow: visible;
}

.veiculos-section .swiper-slide {
    transition: transform 0.3s ease;
    height: auto;
}

.veiculo-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    margin-bottom: 10px;
}

.veiculo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.veiculo-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    z-index: 2;
}

.veiculo-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.veiculo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.veiculo-card:hover .veiculo-image img {
    transform: scale(1.1);
}

.veiculo-content {
    padding: 20px;
}

.veiculo-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.veiculo-preco {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.veiculo-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.veiculo-info span {
    display: flex;
    align-items: center;
    color: #666;
}

.veiculo-info i {
    margin-right: 5px;
    color: var(--primary-color);
}

.btn-detalhes {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.btn-detalhes:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.ver-todos-container {
    text-align: center;
    margin-top: 20px;
}

.btn-ver-todos {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-ver-todos:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

/* Navegação do Swiper */
.veiculos-section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    opacity: 1;
    transition: all 0.3s ease;
}

.veiculos-section .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.veiculos-section .swiper-button-next,
.veiculos-section .swiper-button-prev {
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.veiculos-section .swiper-button-next:hover,
.veiculos-section .swiper-button-prev:hover {
    color: white;
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.veiculos-section .swiper-button-next:after,
.veiculos-section .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .veiculo-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .veiculos-section {
        padding: 60px 0;
    }
    
    .veiculo-info {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 576px) {
    .veiculo-image {
        height: 160px;
    }
    
    .veiculo-content h3 {
        font-size: 1.1rem;
    }
    
    .veiculo-preco {
        font-size: 1.3rem;
    }
}

/* Link para Swiper CSS */
@import url('https://unpkg.com/swiper/swiper-bundle.min.css');