:root {
    /* Color Palette derived from images */
    --color-primary: #2f5296;
    /* Dark/Vibrant Blue */
    --color-primary-dark: #244180;
    --color-secondary: #5ba4d6;
    /* Light Blue */
    --color-accent: #a3c965;
    /* Light Green */
    --color-accent-hover: #bee085;
    --color-feature: #4c7031;
    /* Dark Green for Feature Icons */
    --color-feature-hover: #3b5826;
    --color-text: #4b5563;
    /* Gray Text */
    --color-heading: #1e293b;
    /* Dark Slate heading */
    --color-bg-light: #f9fafb;
    --color-white: #ffffff;

    --font-primary: 'Montserrat', sans-serif;
    /* For headings */
    --font-secondary: 'Inter', sans-serif;
    /* For body text */

    --transition-speed: 0.3s;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 25px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    line-height: 1.2;
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}



/* Base Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-align: center;
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
    font-family: var(--font-primary);
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 82, 150, 0.3);
}

.btn-secondary {
    background-color: rgba(47, 82, 150, 0.85);
    /* Transparent dark blue */
    color: var(--color-white);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: rgba(47, 82, 150, 1);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.btn-accent:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px);
}

/* Typography elements */
.section-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.accent-text {
    color: var(--color-secondary);
}

/* ==================================
   Navbar 
   ================================== */
.navbar {
    background-color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    color: var(--color-heading);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    transition: width var(--transition-speed) ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
}

/* ==================================
   Hero Section 
   ================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    background: url('img/hero-section.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(36, 65, 128, 0.7), rgba(36, 65, 128, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 800px;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ==================================
   Features Section 
   ================================== */
.features {
    padding: 4rem 0;
    background-color: var(--color-white);
    position: relative;
    z-index: 10;
    margin-top: -2rem;
    /* Pull up slightly over hero */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    transition: transform var(--transition-speed) ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background-color: var(--color-feature);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: background-color var(--transition-speed) ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-item:hover .feature-icon {
    background-color: var(--color-feature-hover);
    transform: scale(1.1);
}

.feature-item h3 {
    color: var(--color-feature);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-item p {
    font-size: 0.95rem;
}

/* ==================================
   About / Services Section 
   ================================== */
.about {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* ==================================
   Sistema EOL Section 
   ================================== */
.sistema-eol {
    padding: 5rem 0;
    background-color: var(--color-bg-light);
}

.eol-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.eol-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease;
}

.eol-image:hover img {
    transform: scale(1.02);
}

.eol-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.eol-features {
    list-style: none;
    margin-bottom: 2rem;
}

.eol-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.eol-features i {
    color: var(--color-accent);
    font-size: 1.25rem;
    margin-right: 1rem;
}

.eol-text .btn {
    margin-top: 1rem;
}

/* ==================================
   Solutions / Cards Section 
   ================================== */
.soluciones {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.soluciones-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.soluciones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e5e7eb;
    border-bottom: 5px solid var(--color-accent);
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.card-content p {
    font-size: 0.95rem;
}

/* ==================================
   Servicio por Contrato Section
   ================================== */
.servicio-contrato {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.section-main-title.text-center {
    text-align: center;
    color: var(--color-feature);
    margin-bottom: 4rem;
}

.contrato-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.contrato-container:last-child {
    margin-bottom: 0;
}

.contrato-title {
    font-size: 2.25rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contrato-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.btn-green {
    background-color: var(--color-feature);
    color: var(--color-white);
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    /* Slight pill shape to match the screenshot better */
}

.btn-green:hover {
    background-color: var(--color-feature-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 112, 49, 0.3);
}

.contrato-image img {
    width: 100%;
    border-radius: 2px;
    box-shadow: var(--shadow-sm);
}

/* ==================================
   Footer 
   ================================== */
.footer {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 4rem 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.2rem;
    transition: background-color var(--transition-speed);
}

.social-links a:hover {
    background-color: var(--color-accent);
}

.footer-contact h4 {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #cbd5e1;
}

.footer-contact i {
    color: var(--color-accent);
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* ==================================
   Nuestro Plus Section
   ================================== */
.nuestro-plus {
    background-color: #1b365d;
    /* Dark navy blue from screenshot */
    color: var(--color-white);
    padding: 5rem 0;
}

.plus-title {
    color: var(--color-white);
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.plus-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    /* Light grayish blue */
    margin-bottom: 4rem;
}

.plus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.plus-item i {
    color: var(--color-accent);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.plus-item h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.plus-item p {
    font-size: 0.9rem;
    color: #cbd5e1;
}

/* ==================================
   Equipo de Trabajo Section
   ================================== */
.equipo-trabajo {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.equipo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.equipo-text {
    padding-left: 2rem;
}

.equipo-text h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.btn-pill {
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-size: 1.05rem;
}

.equipo-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

/* ==================================
   Contacto Section
   ================================== */
.contacto-section {
    padding: 5rem 0;
    background-color: var(--color-bg-light);
}

.contacto-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    /* Center horizontally in grid occasionally, let's just leave top align */
    align-items: flex-start;
}

.contacto-info h2 {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contacto-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.info-items .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.info-items .info-item i {
    color: var(--color-accent);
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.contacto-form {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-heading);
    font-family: var(--font-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(47, 82, 150, 0.1);
}

.btn-submit {
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
}

/* ==================================
   Responsive Design 
   ================================== */
@media screen and (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container,
    .eol-container,
    .contrato-container,
    .equipo-container,
    .contacto-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text,
    .eol-text,
    .contrato-text,
    .equipo-text {
        order: -1;
    }

    .contacto-info {
        margin-bottom: 2rem;
    }

    .info-items .info-item {
        justify-content: center;
    }


    .contrato-text,
    .equipo-text {
        padding-right: 0;
        padding-left: 0;
    }

    .eol-features li {
        justify-content: center;
    }

    .soluciones-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        padding: 1rem 1.5rem;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .soluciones-grid {
        grid-template-columns: 1fr;
    }

    .plus-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    h2 {
        font-size: 1.75rem;
    }
}

/* ==================================
   Scroll Animations 
   ================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================================
   Carousel Styles
   ================================== */
.divisiones-container {
    width: 100%;
    margin: 0 auto;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px; /* Ensures they don't get too narrow before wrapping */
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card__image-container {
    height: 160px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card__image {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.card__description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

.card__button {
    display: inline-block;
    background: #2f5296;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
}

.card__button:hover {
    background: #25447a;
}

/* Grid responsiveness */
@media (max-width: 1100px) {
    .card {
        flex: 0 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .card {
        flex: 0 1 100%;
    }
}

/* ==================================
   Marcas Carousel Section
   ================================== */
.marcas-section {
    padding: 6rem 0;
    background-color: var(--color-white);
    overflow: hidden;
}

.section-title-marcas {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 3.5rem;
    letter-spacing: 1px;
    position: relative;
}

.marcas-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4rem;
}

.marcas-wrapper {
    overflow: hidden;
    padding: 20px 0;
}

.marcas-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 2rem;
}


.marca-card {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-white);
    border-radius: 40px;
    padding: 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    overflow: hidden;
    height: fit-content;
}

.marca-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.marca-card.active {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    transform: translateY(0); /* Don't hover if active */
}

.marca-bg {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.marca-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

/* Internal Expansion Details */
.marca-content-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    width: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.marca-card.active .marca-content-details {
    max-height: 600px;
    opacity: 1;
    padding-top: 1rem;
}

.marca-detail-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.marca-detail-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.marca-detail-cotizar {
    display: block;
    width: 100%;
    background-color: #4e5d94;
    color: white;
    padding: 0.9rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.marca-detail-cotizar:hover {
    background-color: #3b4671;
    box-shadow: 0 8px 15px rgba(78, 93, 148, 0.25);
}

.marca-close-mini {
    display: block;
    margin: 1rem auto 0;
    background: none;
    border: none;
    color: #cbd5e1;
    font-size: 0.8rem;
    cursor: pointer;
}

/* Background Colors removed or made transparent */
.bg-pink, .bg-purple, .bg-blue, .bg-orange, .bg-yellow { background-color: transparent; }

/* Navigation Buttons */
.nav-btn-carousel {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f3f4f6;
    border: none;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-btn-carousel:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.1);
}

.nav-btn-carousel.prev { left: 10px; }
.nav-btn-carousel.next { right: 10px; }

@media (max-width: 1024px) {
    .marca-card {
        flex: 0 0 calc(33.333% - 1.35rem);
    }
}

@media (max-width: 768px) {
    .marca-card {
        flex: 0 0 calc(50% - 1rem);
    }
    .marcas-container {
        padding: 0 3rem;
    }
    .marca-bg {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .marca-card {
        flex: 0 0 100%;
    }
}
