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

:root {
    --primary-orange: #FA7F08;
    --primary-blue: #4A90E2;
    --dark-blue: #2C5AA0;
    --light-blue: #5BA3F5;
    --dark-gray: #202020;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --text-gray: #666666;
    --border-green: #00CC00;
    --font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.header {
    background-color: var(--dark-blue);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--primary-orange);
    border-bottom: 2px solid var(--primary-orange);
}

.header-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}


.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background-color: #E67000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250, 127, 8, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background-color: var(--primary-orange);
    transform: translateY(-2px);
}


.hero {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease forwards;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}


.features {
    padding: 70px 0;
    background-color: var(--white);
}

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

.feature-card {
    text-align: center;
    padding: 25px 15px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    transform: translateY(-8px) scale(1.03);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(250, 127, 8, 0.4);
}

.feature-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.feature-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.feature-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}


.partnership {
    padding: 90px 0;
    background-color: var(--light-gray);
}

.partnership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.partnership-image {
    text-align: center;
}

.partnership-img {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.partnership-img:hover {
    transform: scale(1.08);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--dark-gray);
    line-height: 1.2;
}

.partnership-description {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 35px;
    line-height: 1.9;
}


.occasions {
    position: relative;
    padding: 110px 0;
    color: var(--white);
    overflow: hidden;
}

.occasions-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.occasions-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.occasions-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.85) 0%, rgba(44, 90, 160, 0.85) 100%);
    z-index: 2;
}

.occasions-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.section-title-white {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--white);
}

.occasions-subtitle {
    font-size: 20px;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.95);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card:hover {
    transform: scale(1.08);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(250, 127, 8, 0.4);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

.stat-deg::after {
    content: "°";
    font-size: 26px;
    font-weight: 700;
    position: relative;
    top: -14px;
    margin-left: 2px;
}

.stat-percent::after {
    content: "%";
    font-size: 26px;
    font-weight: 700;
    position: relative;
    top: -14px;
    margin-left: 2px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
}

/* ============================================
   ABOUT PRODUCT SECTION
   ============================================ */

.about-product {
    padding: 90px 0;
    background-color: var(--white);
}

.about-header {
    text-align: center;
    margin-bottom: 70px;
}

.about-label {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    font-size: 42px;
    font-weight: 800;
    margin: 18px 0;
    color: var(--dark-gray);
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-top: 12px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.about-description {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.9;
    max-width: 950px;
    text-align: center;
    margin: 0;
}

.about-images {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.about-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border: none;
    padding: 0;
    border-radius: 12px;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.about-img:hover {
    transform: scale(1.08);
}

.testimonial {
    width: 100%;
    max-width: 950px;
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 12px;
    margin-top: 10px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 0;
    line-height: 1.9;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 25px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-author {
    text-align: left;
    line-height: 1.1;
}

.author-name {
    font-weight: 800;
    color: var(--dark-gray);
    font-size: 20px;
    margin: 0;
}

.author-role {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 15px;
    margin: 8px 0 0 0;
}


.raw-material {
    background: #fff;
    padding: 70px 0;
}

.raw-material .raw-box {
    background: linear-gradient(135deg, #ffc37a 0%, #ffb65a 100%);
    max-width: 1300px;
    margin: 0 auto;
    padding: 70px 80px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.raw-material .raw-img {
    width: 500px;
    max-width: 100%;
    display: block;
    margin: 0 auto 45px auto;
    border-radius: 8px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.raw-material .raw-img:hover {
    transform: scale(1.06);
}

.raw-material .raw-title {
    font-size: 58px;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
    margin-bottom: 25px;
}

.raw-material .raw-line {
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.25);
    margin-bottom: 32px;
}

.raw-material .raw-text {
    font-size: 19px;
    line-height: 1.9;
    color: rgba(0, 0, 0, 0.75);
    max-width: 1150px;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.products {
    padding: 90px 0;
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 45px;
}

.product-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    display: flex;
    flex-direction: column;
}

.product-card .btn {
    margin: 20px;
    text-align: center;
}

.product-card .btn-primary {
    box-shadow: 0 8px 20px rgba(250, 127, 8, 0.5);
    width: calc(100% - 40px);
    font-size: 15px;
    padding: 16px;
    border-radius: 6px;
}

.product-card .btn-primary:hover {
    transform: scale(1.03);
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    background-color: #FF9D1F99;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-image img {
    width: auto;
    height: 100%;
    object-fit: contain;
    padding: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-image img:hover {
    transform: scale(1.08);
}

.product-card > * {
    padding: 0 25px;
    color: var(--dark-gray);
}

.product-card > .product-image {
    padding: 0;
}

.product-title {
    font-size: 22px;
    font-weight: 700;
    margin: 25px 0 12px;
    color: var(--dark-gray);
}

.product-capacity {
    font-size: 15px;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 22px;
}

.product-features {
    list-style: none;
    margin-bottom: 25px;
}

.product-features li {
    font-size: 15px;
    color: var(--dark-gray);
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--dark-gray);
    font-weight: bold;
    font-size: 16px;
}


.resell {
    padding: 60px 0;
    background: #fff;
}

.resell-top {
    text-align: center;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.resell-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

.resell-subtitle {
    text-align: center;
    font-size: 18px;
    color: #999;
    margin-bottom: 50px;
}

.resell-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.resell-card {
    transition: all 0.3s ease;
    text-align: center;
}

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

.resell-card-title {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 16px;
}

.resell-card-text {
    font-size: 15px;
    color: #999;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
}

.resell-divider {
    width: 100%;
    height: 0;
    border-top: 1px dotted rgba(0, 0, 0, 0.15);
    margin: 16px 0;
}

.resell-link {
    display: inline-block;
    color: var(--primary-orange);
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.resell-link:hover {
    opacity: 0.8;
    transform: translateX(4px);
}


/* ============================================
   BENEFICIOS
   ============================================ */

.benefits {
    padding: 90px 0;
    background-color: var(--light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 45px;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15);
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.benefit-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ============================================
   CTA 
   ============================================ */

.cta-section {
    position: relative;
    padding: 110px 0;
    color: var(--white);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.75) 0%, rgba(44, 90, 160, 0.75) 100%);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.cta-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 35px;
}


.contact {
    padding: 90px 0;
    background-color: var(--white);
}

.contact .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-family);
    font-size: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(250, 127, 8, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn {
    align-self: center;
    padding: 16px 50px;
    font-size: 15px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--dark-blue);
    padding: 50px 0 30px;
    color: var(--white);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

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

.footer-address {
    font-size: 16px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 25px;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-orange);
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
}


.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zoom-image {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.zoom-image:hover {
    transform: scale(1.08);
}


@media (max-width: 1024px) {
    .hero-title {
        font-size: 52px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .partnership-content {
        gap: 50px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .resell-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    
    .about-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .partnership-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        grid-template-columns: 1fr;
    }
    
    .raw-material .raw-box {
        padding: 40px 30px;
    }
    
    .raw-material .raw-title {
        font-size: 36px;
    }
    
    .resell-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .resell-title {
        font-size: 36px;
    }
    
    .resell-card-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .header-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .raw-material .raw-title {
        font-size: 28px;
    }
    
    .resell-title {
        font-size: 28px;
    }
}



.benefits {
    padding: 0;
    background-color: var(--white);
}

.benefits-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
}

.benefit-card-full {
    position: relative;
    height: 450px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.benefit-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2;
    transition: all 0.3s ease;
}

.benefit-content {
    position: relative;
    z-index: 3;
    padding: 40px 30px;
    color: var(--white);
    width: 100%;
}

.benefit-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
}

.benefit-title-full {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--white);
    line-height: 1.2;
}

.benefit-text-full {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.benefit-card-full:hover .benefit-bg-image {
    transform: scale(1.05);
}

.benefit-card-full:hover .benefit-overlay {
    background: linear-gradient(135deg, rgba(250, 127, 8, 0.8) 0%, rgba(250, 127, 8, 0.6) 100%);
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits-cards {
    padding: 90px 0;
    background-color: var(--light-gray);
}

.benefits-cards .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefits-cards .benefit-card {
    text-align: center;
    padding: 35px;
    background-color: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.benefits-cards .benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefits-cards .benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefits-cards .benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefits-cards .benefit-card:nth-child(4) { animation-delay: 0.4s; }

.benefits-cards .benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.benefits-cards .benefit-icon {
    width: 90px;
    height: 90px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.benefits-cards .benefit-card:hover .benefit-icon {
    transform: scale(1.15);
}

.benefits-cards .benefit-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.benefits-cards .benefit-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE BENEFITS
   ============================================ */

@media (max-width: 1024px) {
    .benefits-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefit-card-full {
        height: 400px;
    }

    .benefits-cards .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefit-title-full {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .benefits-grid-full {
        grid-template-columns: 1fr;
    }
    
    .benefit-card-full {
        height: 350px;
    }
    
    .benefit-title-full {
        font-size: 24px;
    }
    
    .benefit-content {
        padding: 30px 25px;
    }
}

@media (max-width: 600px) {
    .benefits-cards .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .benefit-card-full {
        height: 300px;
    }
    
    .benefit-title-full {
        font-size: 20px;
    }
    
    .benefit-text-full {
        font-size: 14px;
    }
    
    .benefit-content {
        padding: 20px 15px;
    }
}
