:root {
    --color-primary: #009e4b;
    --color-white: #fff;
    --color-text: #333;
    --color-light-gray: #f5f5f5;
    --transition-default: all .3s ease;
    --shadow-default: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 8px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Fira Sans', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    text-rendering: optimizeLegibility;
}

/* Optimización de imágenes */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Optimización de animaciones */
.cta-button,
.feature-item,
.whatsapp-float {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    contain: content;
}

/* Optimización de transiciones */
.cta-button,
.feature-item,
.whatsapp-float {
    transition: var(--transition-default);
    transform: translateZ(0);
}

/* Critical CSS - Estilos críticos para el primer render */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('img/optimized/portada-mobile.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    contain: content;
}

/* Imágenes responsivas para el hero */
@media (min-width: 768px) {
    .hero {
        background-image: url('img/optimized/portada-tablet.webp');
    }
}

@media (min-width: 1200px) {
    .hero {
        background-image: url('img/optimized/portada-desktop.webp');
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

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

.hero-subtitle {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-default);
    box-shadow: var(--shadow-default);
}

.cta-button:hover {
    background-color: #007a3a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }
}

/* Products Grid */
.products-grid {
    padding: 2rem 0;
    background-color: var(--color-white);
}

.products-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.product-card {
    background: var(--color-primary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
}

.card-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.card-text {
    padding: 1rem;
}

.card-text h2 {
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.card-text h3 {
    color: var(--color-white);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.card-text h3 strong {
    color: var(--color-white);
    font-weight: 700;
}

.card-text .cta-button {
    background-color: var(--color-white);
    color: var(--color-primary);
    margin-top: 1rem;
}

/* Responsive para Products Grid */
@media (max-width: 992px) {
    .products-container {
        max-width: 800px;
    }

    .product-card {
        margin-bottom: 1.5rem;
    }

    .card-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .card-text {
        padding: 0.5rem;
    }

    .card-text h2 {
        font-size: 1.8rem;
    }

    .card-text h3 {
        font-size: 1rem;
    }

    .card-text .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .products-grid {
        padding: 1rem 0;
    }

    .product-card {
        margin-bottom: 1rem;
    }

    .card-image {
        max-width: 100%;
    }

    .card-text {
        padding: 0.5rem;
    }

    .card-text h2 {
        font-size: 1.6rem;
    }

    .card-text h3 {
        font-size: 0.95rem;
    }

    .card-text .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Ajuste adicional para pantallas muy pequeñas */
@media (max-width: 480px) {
    .product-card {
        margin-bottom: 0.8rem;
    }

    .card-image {
        max-width: 100%;
    }

    .card-text {
        padding: 0.3rem;
    }

    .card-text h2 {
        font-size: 1.4rem;
    }

    .card-text h3 {
        font-size: 0.9rem;
    }

    .card-text .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* Asegurando que todos los textos sean blancos */
.card-text h2,
.card-text h3 {
    color: var(--color-white);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background: white;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

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

/* Sección Title */
.section-title {
    padding: 5rem 0;
    background-color: var(--color-white);
}

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

.title-text {
    text-align: left;
}

.title-text h2 {
    color: var(--color-text);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.title-text ul li {
    list-style: none;
}

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

.title-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive para Section Title */
@media (max-width: 992px) {
    .title-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .title-text {
        text-align: center;
    }

    .title-text p {
        font-size: 1rem;
    }

    .title-image img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .section-title {
        padding: 3rem 0;
    }

    .title-text h2 {
        font-size: 2.2rem;
    }

    .title-text p {
        font-size: 1rem;
    }

    .title-image img {
        height: 250px;
    }
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 3rem;
    position: relative;
}

.faq-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-primary);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 1rem;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.faq-answer {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.faq-answer p {
    margin: 0;
}

/* Responsive para FAQ */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 3rem 0;
    }

    .faq-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .faq-item {
        padding: 1.2rem;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .faq-answer {
        font-size: 1rem;
    }
}

/* Categories Section */
.categories {
    padding: 5rem 0;
    background-color: var(--color-white);
}

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

.category-item {
    text-align: center;
}

.category-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-item h3 {
    color: var(--color-text);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.category-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: #007a3a;
}

.contact-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    color: white;
}

.contact-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

._form-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

._field-wrapper {
    width: 100%;
}

._field-wrapper input,
._field-wrapper select,
._field-wrapper textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Fira Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

._field-wrapper input:focus,
._field-wrapper select:focus,
._field-wrapper textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

._form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-weight: 500;
}

.field-required {
    color: #ff4444;
}

._submit {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

._submit:hover {
    background-color: #007a3a;
    transform: translateY(-2px);
}

/* Responsive para Categories y Contact */
@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-image {
        width: 100px;
        height: 100px;
    }

    .category-item h3 {
        font-size: 1.3rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
    }

    .form-container {
        padding: 1.5rem;
    }
}

/* Footer */
.footer {
    background-color: var(--color-text);
    color: var(--color-white);
    padding: 4rem 0 2rem;
    transform: translateZ(0);
    backface-visibility: hidden;
}

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

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-item a,
.contact-item span {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--color-primary);
}

.footer-map {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-delivery {
    margin-top: 2rem;
}

.footer-delivery p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive para Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-map {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1rem;
    }

    .contact-item a,
    .contact-item span {
        font-size: 0.9rem;
    }

    .footer-map {
        height: 200px;
    }

    .footer-delivery p {
        font-size: 0.8rem;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37,211,102,0.3);
    z-index: 1000;
    transition: var(--transition-default);
}

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

.whatsapp-float img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}

/* Estilos para las tarjetas de productos */
.products-cards {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.product-card {
    background: var(--color-primary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
}

.card-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.card-text {
    padding: 1rem;
}

.card-text h2 {
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.card-text h3 {
    color: var(--color-white);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.card-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .card-content,
    .card-content.reverse {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card-text h2 {
        font-size: 1.6rem;
    }

    .card-text h3 {
        font-size: 1rem;
    }

    .product-card {
        margin-bottom: 1rem;
    }
}

/* Optimización de scroll */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Fira Sans', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
}

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

.product-card {
    background: var(--color-primary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    /* Estilos del navbar en móvil */
    .navbar .container {
        justify-content: flex-start;
        padding: 1rem 1rem;
    }
    
    .logo {
        flex: 1;
        justify-content: flex-start;
    }
    
    /* Estilos del botón hamburguesa */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 32px;
        height: 24px;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        z-index: 10001 !important;
        margin-right: 10px;
        position: fixed !important;
        top: 18px !important;
        right: 18px !important;
    }

    .hamburger .bar {
        display: block !important;
        width: 100% !important;
        height: 4px !important;
        background-color: #009e4b !important;
        border-radius: 2px !important;
        margin: 0 0 6px 0 !important;
        transition: all 0.3s ease !important;
    }

    .hamburger .bar:last-child {
        margin-bottom: 0 !important;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0 !important;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(10px) rotate(45deg) !important;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg) !important;
    }

    /* Estilos del menú */
    .nav-menu {
        display: none !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: #fff !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 60px 0 0 0 !important;
        margin: 0 !important;
        z-index: 100100 !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        right: unset !important;
        top: unset !important;
        transform: none !important;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-item {
        margin: 10px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s, transform 0.3s;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.7rem 1.5rem;
        display: block;
        color: #014e27;
        text-decoration: none;
        font-weight: 600;
        border-radius: 8px;
        background: none;
    }

    body.menu-open {
        overflow: hidden !important;
    }
}

/* Factory Section */
.factory-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.factory-text {
    text-align: center;
    margin-bottom: 3rem;
}

.factory-text h2 {
    color: var(--color-text);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.factory-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.factory-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.factory-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    aspect-ratio: 4/3;
}

.factory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.factory-cta {
    text-align: center;
}

@media (max-width: 992px) {
    .factory-text h2 {
        font-size: 2.2rem;
    }
    
    .factory-gallery {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .factory-section {
        padding: 3rem 0;
    }
    
    .factory-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .factory-text p {
        font-size: 1rem;
    }
    
    .factory-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .factory-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .factory-text h2 {
        font-size: 1.8rem;
    }
}

/* Video Section */
.video-section {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.video-text {
    text-align: left;
}

.video-text h2 {
    color: var(--color-text);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.video-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 480px;
    border: none;
    border-radius: 12px;
    display: block;
}

.video-container .instagram-media {
    margin: 0 !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

@media (max-width: 992px) {
    .video-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .video-text {
        text-align: center;
    }
    
    .video-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 3rem 0;
    }
    
    .video-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .video-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .video-container {
        max-width: 100%;
    }
    
    .video-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .video-text h2 {
        font-size: 1.8rem;
    }
    
    .video-container {
        max-width: 100%;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .video-container {
        max-width: 100%;
    }
    
    .video-container iframe {
        height: 200px;
    }
}

/* CTA Section - Empieza Ahora */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #014e27 0%, #009e4b 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--color-white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-buttons .cta-button svg {
    flex-shrink: 0;
}

.cta-buttons .cta-whatsapp {
    background-color: #25d366;
    color: var(--color-white);
}

.cta-buttons .cta-whatsapp:hover {
    background-color: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.cta-buttons .cta-form {
    background-color: var(--color-white);
    color: #014e27;
}

.cta-buttons .cta-form:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive para CTA Section */
@media (max-width: 768px) {
    .cta-section {
        padding: 3.5rem 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-buttons .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 1.7rem;
    }

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