/* Paleta de colores basada en tu diseño ilustrado */
:root {
    --verde-hoja: #4a7045;
    --verde-claro: #8cb385;
    --terracota: #d27d56;
    --fondo-crema: #fdfbf7;
    --texto-oscuro: #2c3e29;
    --azul-acuarela: #d4eaf5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--fondo-crema);
    color: var(--texto-oscuro);
    line-height: 1.6;
}

/* Tipografía especial para títulos */
h1, h2, h3 {
    font-family: 'Caveat', cursive;
    color: var(--verde-hoja);
}

/* Header y Navegación */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: transparent;
}

header h1 {
    font-size: 2.5rem;
    color: var(--verde-hoja);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--texto-oscuro);
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--verde-claro);
}

/* Sección Hero (Banner) */
.hero {
    /* Usando tu imagen banner.png - imagen completa sin recortes */
    background-image: url('../images/banner.png'); 
    background-size: contain; /* Muestra la imagen completa */
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent; /* Sin fondo de color */
    height: 80vh; /* Más altura para mayor impacto */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    border-radius: 30px; /* Bordes suaves */
    margin: 0 2%;
}

.hero-content {
    background: rgba(253, 251, 247, 0.95); /* Fondo más suave y legible */
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    backdrop-filter: blur(8px); /* Efecto de desenfoque suave */
    max-width: 600px; /* Limita el ancho para mejor legibilidad */
}

.hero h2 {
    font-size: 4.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--texto-oscuro);
    line-height: 1.4;
}

/* Botones */
.btn-primary {
    display: inline-block;
    background-color: var(--terracota);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-primary:hover {
    background-color: #b56643;
    transform: translateY(-2px);
}

/* Botón secundario */
.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--verde-hoja);
    border: 2px solid var(--verde-hoja);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    margin: 0 10px;
}

.btn-secondary:hover {
    background-color: var(--verde-hoja);
    color: white;
    transform: translateY(-2px);
}

/* Sección de Servicios */
.services {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 8rem 5% 5rem;
    flex-wrap: wrap;
}

.service-card {
    background-color: white;
    padding: 5rem 2.5rem 3rem;
    border-radius: 30px;
    width: 30%;
    min-width: 300px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(74, 112, 69, 0.1);
    border: 3px solid #f8f9f6;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
    margin-top: 120px; /* Más espacio para imágenes grandes */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--verde-hoja), var(--verde-claro), var(--terracota));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(74, 112, 69, 0.2);
    border-color: var(--verde-claro);
}

/* Imágenes que sobresalen del contenedor */
.service-image {
    width: 180px;
    height: 180px;
    margin: -140px auto 2rem; /* Sobresalen dramáticamente - 78% fuera de la tarjeta */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
}

.service-image img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    filter: drop-shadow(4px 4px 15px rgba(74, 112, 69, 0.25));
    transition: all 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.3);
    filter: drop-shadow(8px 8px 25px rgba(74, 112, 69, 0.4));
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--verde-hoja);
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--terracota);
}

/* =========================================
   SECCIÓN SOBRE NOSOTROS
========================================= */
.about-section {
    padding: 8rem 5% 6rem;
    background: linear-gradient(135deg, 
        rgba(248, 249, 246, 0.95) 0%, 
        rgba(255, 255, 255, 0.98) 50%, 
        rgba(226, 232, 223, 0.95) 100%
    );
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="%234A7045" opacity="0.1"/><circle cx="75" cy="75" r="1.5" fill="%23A8C090" opacity="0.15"/><circle cx="50" cy="10" r="1" fill="%23E2A857" opacity="0.1"/></svg>');
    animation: float 20s ease-in-out infinite;
    z-index: -1;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: 'Caveat', cursive;
    font-size: 4rem;
    color: var(--verde-hoja);
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.founders-intro {
    background: rgba(255, 255, 255, 0.7);
    padding: 2.5rem;
    border-radius: 25px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(74, 112, 69, 0.1);
    border-left: 5px solid var(--verde-claro);
    position: relative;
}

.ceo-image-float {
    position: absolute;
    top: -15px;
    left: -15px;
    z-index: 10;
}

.ceo-image-float img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 20px rgba(74, 112, 69, 0.2);
    transition: transform 0.3s ease;
}

.ceo-image-float:hover img {
    transform: scale(1.1);
}

.founders-intro h3 {
    font-family: 'Caveat', cursive;
    font-size: 2.2rem;
    color: var(--verde-hoja);
    margin-bottom: 1rem;
}

.highlight {
    font-size: 1.3rem;
    color: var(--texto-secundario);
    font-weight: 600;
    line-height: 1.6;
    font-style: italic;
}

.story {
    margin-bottom: 3rem;
}

.story h4, .values h4 {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: var(--terracota);
    margin-bottom: 1.5rem;
}

.story p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--texto-principal);
}

.values {
    background: rgba(168, 192, 144, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.values ul {
    list-style: none;
    padding: 0;
}

.values li {
    padding: 1rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(74, 112, 69, 0.1);
    color: var(--texto-principal);
}

.values li:last-child {
    border-bottom: none;
}

.values strong {
    color: var(--verde-hoja);
    font-weight: 600;
}

.gratitude {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(45deg, var(--verde-claro), rgba(168, 192, 144, 0.3));
    border-radius: 25px;
    margin-top: 2rem;
}

.thank-you {
    font-family: 'Caveat', cursive;
    font-size: 1.6rem;
    color: var(--verde-hoja);
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.7);
}

.about-visual {
    position: sticky;
    top: 2rem;
}

.founder-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(74, 112, 69, 0.15);
    border: 3px solid var(--fondo-claro);
    position: relative;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--verde-hoja), var(--verde-claro), var(--terracota));
}

.founder-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.founder-card:hover .founder-image img {
    transform: scale(1.05);
}

.founder-info {
    padding: 2.5rem;
}

.founder-info h3 {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: var(--verde-hoja);
    margin-bottom: 0.5rem;
    text-align: center;
}

.titles {
    color: var(--terracota);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bio {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--texto-secundario);
    margin-bottom: 2rem;
    text-align: center;
}

.achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.achievement {
    text-align: center;
    padding: 1rem;
    background: rgba(168, 192, 144, 0.1);
    border-radius: 15px;
}

.achievement .number {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--verde-hoja);
}

.achievement .label {
    font-size: 0.8rem;
    color: var(--texto-secundario);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.founder-quote {
    background: rgba(226, 168, 87, 0.1);
    padding: 1.5rem;
    border-radius: 20px;
    border-left: 4px solid var(--terracota);
    text-align: center;
}

.founder-quote p {
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: var(--verde-hoja);
    margin: 0;
    font-style: italic;
}

/* CEO Credit - Bibliografía discreta */
.ceo-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    border: 1px solid rgba(74, 112, 69, 0.1);
}

.ceo-credit img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--verde-claro);
}

.ceo-credit span {
    font-size: 0.9rem;
    color: var(--texto-secundario);
    font-style: italic;
    font-weight: 500;
}

/* Sección de estadísticas separada */
.statistics-section {
    margin-top: 4rem;
    padding: 4rem 0;
    text-align: center;
    /* background: rgba(168, 192, 144, 0.05); */
    border-radius: 30px;
}

.statistics-section h3 {
    font-family: 'Caveat', cursive;
    font-size: 2.5rem;
    color: var(--verde-hoja);
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(74, 112, 69, 0.1);
    border: 2px solid rgba(168, 192, 144, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(74, 112, 69, 0.15);
}

.stat-number {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--verde-hoja);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 1rem;
    color: var(--texto-secundario);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* Sección de Catálogo PDF */
.catalog-section {
    padding: 5rem 5%;
    background-color: white;
    margin: 0 2%;
    border-radius: 30px;
    /* box-shadow: 0 10px 30px rgba(74, 112, 69, 0.08); */
    margin-bottom: 3rem;
}

.catalog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.catalog-header h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--verde-hoja);
}

.catalog-header p {
    font-size: 1.1rem;
    color: var(--texto-oscuro);
    opacity: 0.8;
}

.pdf-viewer {
    border-radius: 15px;
    overflow: hidden;
    /* box-shadow: 0 8px 25px rgba(0,0,0,0.1); */
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.pdf-viewer iframe {
    border: none;
    border-radius: 15px;
}

.catalog-actions {
    text-align: center;
    margin-top: 2rem;
}

/* Sección de Contacto */
.contact-section {
    background: linear-gradient(135deg, var(--verde-hoja), var(--verde-claro));
    padding: 5rem 5%;
    margin: 3rem 2% 0;
    border-radius: 30px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decoraciones de plantas de fondo */
.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.plant-decoration {
    position: absolute;
    opacity: 0.1;
    z-index: 1;
}

.plant-decoration img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: brightness(1.5);
}

.plant-1 {
    top: 10%;
    left: 5%;
    transform: rotate(-15deg);
}

.plant-2 {
    top: 20%;
    right: 8%;
    transform: rotate(20deg);
}

.plant-3 {
    bottom: 15%;
    left: 10%;
    transform: rotate(10deg);
}

.contact-header,
.contact-main {
    position: relative;
    z-index: 2;
}

.contact-header h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

@media (max-width: 992px) {
    .contact-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .contact-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 2%;
        margin: 2rem 1% 0;
        border-radius: 20px;
    }
    
    .contact-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-form h3,
    .contact-map h3 {
        font-size: 1.4rem;
    }
    
    .message-form {
        padding: 1.5rem;
    }
    
    .btn-whatsapp {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .contact-item {
        min-width: auto;
        padding: 0.8rem;
    }
    
    .plant-decoration {
        opacity: 0.03;
    }
    
    .plant-decoration img {
        width: 60px;
        height: 60px;
    }
}

.contact-form h3,
.contact-map h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Formulario de mensaje */
.message-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.message-form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 15px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    resize: vertical;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--texto-oscuro);
}

.message-form textarea::placeholder {
    color: #666;
}

.message-form textarea:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Información de contacto reorganizada */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
}

.contact-item .icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-family: 'Caveat', cursive;
}

.contact-item p {
    opacity: 0.9;
    font-weight: 600;
    margin: 0;
}

/* Sección del mapa */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Mapa cozy amarillo */
.cozy-map {
    background: linear-gradient(135deg, #f9f3a8, #faf0c4, #f5e79e);
    height: 300px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    border-radius: 15px;
}

.cozy-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 60% 30%, rgba(248, 240, 164, 0.4) 3px, transparent 3px);
    background-size: 40px 40px, 60px 60px, 80px 80px;
    opacity: 0.6;
}

.map-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    z-index: 2;
    position: relative;
    text-shadow: 0 2px 10px rgba(74, 112, 69, 0.3);
}

.map-content {
    z-index: 2;
    position: relative;
}

.map-content h4 {
    color: var(--verde-hoja);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Caveat', cursive;
}

.main-address {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--texto-oscuro);
    margin-bottom: 0.3rem;
    font-family: 'Caveat', cursive;
}

.city {
    font-size: 1.1rem;
    color: var(--verde-hoja);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.map-details {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.detail {
    background: rgba(255, 255, 255, 0.7);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--texto-oscuro);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.address {
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Botón de WhatsApp actualizado */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
    width: 100%;
    font-family: 'Quicksand', sans-serif;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 1.2rem;
    margin-right: 8px;
}

/* Footer */
footer {
    background-color: var(--verde-hoja);
    color: white;
    text-align: center;
    padding: 3rem 1rem 1rem;
    margin-top: 2rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

.social-links {
    margin: 1.5rem 0;
}

.social-links a {
    color: var(--fondo-crema);
    text-decoration: none;
    font-weight: 600;
    margin: 0 10px;
}

.social-links a:hover {
    color: var(--terracota);
}

.copyright {
    font-size: 0.8rem;
    margin-top: 2rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    opacity: 0.8;
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo {
        gap: 0.5rem;
    }
    
    .logo-icon {
        width: 30px;
        height: 30px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .footer-logo {
        width: 16px;
        height: 16px;
    }
    .services-section {
        padding: 4rem 1rem;
        gap: 3rem;
    }
    .services-grid {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    .service-card {
        width: 100%;
        min-width: unset;
        margin: 2rem auto;
        padding: 4rem 2rem 3rem;
        margin-top: 120px;
        max-width: 400px; /* Tamaño máximo para no verse demasiado ancho */
    }
    
    /* Responsive para sección sobre nosotros */
    .about-section {
        padding: 4rem 2rem;
    }
    
    .about-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .about-text h2 {
        font-size: 3rem;
    }
    
    .founders-intro {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .ceo-image-float {
        top: -10px;
        left: -10px;
    }
    
    .ceo-image-float img {
        width: 50px;
        height: 50px;
        border: 3px solid white;
    }
    
    .founders-intro h3 {
        font-size: 1.8rem;
    }
    
    .highlight {
        font-size: 1.1rem;
    }
    
    .story h4, .values h4 {
        font-size: 1.4rem;
    }
    
    .values {
        padding: 1.5rem;
    }
    
    .founder-info {
        padding: 2rem;
    }
    
    .achievements {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .achievement .number {
        font-size: 1.5rem;
    }
    
    .founder-quote p {
        font-size: 1.1rem;
    }
    
    .about-visual {
        position: static;
    }
    
    /* CEO Credit responsive */
    .ceo-credit {
        margin-top: 2rem;
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .ceo-credit img {
        width: 40px;
        height: 40px;
    }
    
    .ceo-credit span {
        font-size: 0.8rem;
    }
    
    /* Estadísticas responsive */
    .statistics-section {
        margin-top: 3rem;
        padding: 3rem 1rem;
    }
    
    .statistics-section h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    .hero h2 {
        font-size: 3.2rem;
    }
    /* Ajuste del banner para móviles */
    .hero {
        background-size: 160% auto; /* Zoom más grande para mayor presencia */
        background-position: 70% center; /* Enfoca mejor la parte derecha del banner */
        height: 70vh; /* Altura mayor para móviles */
        padding: 1.5rem;
    }
    
    .hero-content {
        padding: 2.5rem 2rem;
        max-width: 90%;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    /* Catálogo en móviles */
    .catalog-section {
        margin: 0 5%;
        padding: 3rem 3%;
    }
    .pdf-viewer iframe {
        height: 450px; /* Altura mayor para móviles */
        width: 100%; /* Ancho completo en móviles */
    }
    .catalog-actions a {
        display: block;
        margin: 10px 0;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}
}

/* Estilos móviles adicionales para mapa cozy */
@media (max-width: 768px) {
    .cozy-map {
        height: 250px;
        padding: 1.5rem 1rem;
    }
    
    .map-icon {
        font-size: 2.5rem;
    }
    
    .main-address {
        font-size: 1.5rem;
    }
    
    .map-details {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .detail {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}


/* Nueva Sección de Contacto */
.contact-section-new {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--verde-hoja), var(--verde-claro));
    position: relative;
    overflow: hidden;
}

.contact-section-new .contact-header {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
    position: relative;
    z-index: 2;
}

.contact-section-new .contact-header h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-section-new .contact-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Contenedor principal del contacto */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Formulario de contacto mejorado */
.contact-form-new {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    color: white;
}

.form-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.form-header p {
    opacity: 0.8;
    font-size: 1rem;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.input-group input,
.input-group textarea {
    padding: 1rem;
    border: none;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    color: var(--texto-oscuro);
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    background: white;
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.input-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-contact {
    background: linear-gradient(135deg, var(--terracota), #d27d56);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(210, 125, 86, 0.4);
    background: linear-gradient(135deg, #b56643, var(--terracota));
}

/* Sección de ubicación con mapa circular */
.contact-location {
    color: white;
    text-align: center;
}

.location-header {
    margin-bottom: 2rem;
}

.location-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.location-header p {
    opacity: 0.8;
    font-size: 1rem;
}

/* Mapa circular */
.circular-map {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.circular-map::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--terracota), var(--verde-claro), var(--azul-acuarela), var(--terracota));
    z-index: -1;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.circular-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: sepia(0.1) saturate(1.2);
}

/* Detalles de ubicación */
.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    text-align: left;
}

.detail-item .icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.detail-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: white;
    font-family: 'Caveat', cursive;
}

.detail-item p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

/* Responsividad */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .circular-map {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .contact-section-new {
        padding: 4rem 3%;
    }
    
    .contact-section-new .contact-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-form-new {
        padding: 2rem;
    }
    
    .circular-map {
        width: 250px;
        height: 250px;
    }
    
    .location-details {
        gap: 1rem;
    }
    
    .detail-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .detail-item .icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .contact-container {
        gap: 2rem;
    }
    
    .circular-map {
        width: 200px;
        height: 200px;
    }
    
    .input-group input,
    .input-group textarea {
        padding: 0.8rem;
    }
    
    .btn-contact {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* =========================================
   BOTÓN FLOTANTE DE WHATSAPP
========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128c7e, #25d366);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

.whatsapp-tooltip {
    background: var(--verde-hoja);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 112, 69, 0.3);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        left: 15px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-tooltip {
        font-size: 12px;
        padding: 6px 10px;
    }
}
