@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&family=Lato:wght@300;400;700&display=swap');

:root {
    /* Aplicando las nuevas fuentes a las variables */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Lato', sans-serif;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-hueso);
    color: var(--color-cafe-cafe);
    font-size: var(--text-base);
    line-height: 1.618;
    letter-spacing: 0.02em;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 10px; /* Padding reducido solicitado */
    box-sizing: border-box;
    container-type: inline-size;
}

header.navbar-transparent {
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

header.navbar-scrolled {
    background-color: rgba(253, 252, 240, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(193, 154, 107, 0.15);
    padding: 15px 10px;
}

.logo, .hero-title, .footer-brand {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 12px;
    font-family: var(--font-serif);
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

.logo, .footer-brand {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
}

.hero-title {
    font-size: clamp(1.8rem, 6vw, 4rem);
    color: #FFFFFF;
    margin-bottom: 35px;
}

.logo span, .hero-title span, .footer-brand span {
    display: inline-block;
}

/* Asegurar que el segundo bloque no se rompa internamente (López Sosa juntos) */
.logo span:last-child, .hero-title span:last-child, .footer-brand span:last-child {
    white-space: nowrap;
}

@media (max-width: 480px) {
    .logo span, .hero-title span, .footer-brand span {
        width: 100%;
    }

    .logo, .hero-title, .footer-brand {
        row-gap: 4px;
    }
}


h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.05em;
    color: var(--color-cafe-cafe);
}

h2 { font-size: var(--text-md); }

nav a {
    text-decoration: none;
    color: var(--color-cafe-cafe);
    text-transform: uppercase;
    font-size: var(--text-sm);
    letter-spacing: 2px;
}

.hero {
    height: 75vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(42, 27, 24, 0.3), rgba(42, 27, 24, 0.6)), 
                url('../assets/img/hero_bd.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 var(--space-xl);
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    container-type: inline-size;
}

.hero-subtitle {
    font-size: var(--text-md);
    font-family: var(--font-serif);
    font-style: italic;
    color: #FFFFFF; /* Color blanco */
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 7vw, 4.5rem);
    color: #FFFFFF;
    letter-spacing: 3px;
    margin-bottom: 35px;
    text-transform: uppercase;
    white-space: nowrap;
    max-width: 95%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- MEDIA QUERY DE SEGURIDAD PARA PANTALLAS EXTREMADAMENTE PEQUEÑAS --- */
@media (max-width: 320px) {
    .logo, .hero-title, .intro-title {
        font-size: 0.9rem !important;
        letter-spacing: 1px !important;
    }
    
    header {
        padding: 10px 5px !important;
    }
}

.btn-hero {
    margin-top: 0;
    margin-bottom: 0;
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    transition: all 0.4s ease;
}

.btn-hero:hover {
    background-color: #FFFFFF;
    color: #2A1B18;
}

.error-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60vh;
    padding: var(--space-xl);
}


/* Catálogo */
.catalog-container {
    padding: 40px 5% var(--space-xxl); /* Espaciado equilibrado para la transición al fondo beige */
    background-color: var(--color-hueso);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.product-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--color-cafe-cafe);
    transition: transform 0.4s ease;
}

/* Skeleton Screen */
@keyframes skeleton-pulse {
    0% { background-color: rgba(193, 154, 107, 0.15); }
    50% { background-color: rgba(193, 154, 107, 0.35); }
    100% { background-color: rgba(193, 154, 107, 0.15); }
}

.skeleton {
    animation: skeleton-pulse 2s ease-in-out infinite;
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: var(--color-cafe-cafe); /* Fondo negro/café oscuro base */
}

.product-image-wrapper img {
    width: 100%;
    height: 120%; /* Sobredimensionar para permitir el efecto parallax */
    object-fit: cover;
    position: absolute;
    top: -10%; /* Centrar la imagen sobredimensionada */
    left: 0;
    transition: opacity 1s ease-in-out, transform 0.1s linear; /* Transición suave para parallax */
    opacity: 0; /* Oculta inicialmente */
}

.product-image-wrapper img.loaded {
    opacity: 1; /* Muestra suavemente al cargar */
}


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

.product-hover-details {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(253, 252, 240, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: var(--space-lg);
    box-sizing: border-box;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(193, 154, 107, 0.2);
}

.product-card:hover .product-hover-details {
    bottom: 0;
}

.detail-label {
    font-size: var(--text-xs);
    color: var(--color-beige-desierto);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.detail-value {
    font-size: var(--text-sm);
    color: var(--color-cafe-cafe);
    font-weight: 400;
    margin-bottom: var(--space-sm);
    font-family: var(--font-serif);
}

.detail-divider {
    width: 30px;
    height: 1px;
    background-color: var(--color-beige-desierto);
    margin-bottom: var(--space-sm);
    opacity: 0.5;
}

.view-more {
    margin-top: var(--space-sm);
    font-size: 0.75rem;
    font-style: italic;
    border-bottom: 1px solid var(--color-oro-metalico);
    padding-bottom: 2px;
    color: #3E2723;
    text-align: center;
    max-width: 90%;
    line-height: 1.2;
}


.product-info {
    padding: var(--space-md) 0;
    text-align: center;
}

.product-sku {
    font-size: var(--text-sm);
    color: var(--color-beige-desierto);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
    font-weight: 300;
}

.product-name {
    font-size: var(--text-md);
    margin: 0;
    font-weight: 400;
    font-family: var(--font-serif);
}

.product-price {
    font-size: var(--text-base);
    color: var(--color-cafe-cafe);
    margin-top: var(--space-sm);
    font-weight: 400;
}

.product-link {
    text-decoration: none;
    color: inherit;
}

/* --- FOOTER PROFESIONAL DE 3 COLUMNAS --- */
.main-footer {
    clear: both;
    background-color: #4d312e; /* Café chocolate más suave y cálido */
    padding: 60px 5%;
    color: #FFFFFF;
    font-family: var(--font-sans);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: #F5F5DC; /* Crema suave */
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1)); /* Sutil destello de lujo */
}

.footer-slogan {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(245, 245, 220, 0.8);
    margin: 0;
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: #F5F5DC;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-address {
    font-style: normal;
    line-height: 1.8;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a, .footer-address, .maps-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-links li a:hover {
    opacity: 0.7;
}

.maps-link {
    display: inline-block;
    margin-top: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    opacity: 0.5;
    letter-spacing: 1px;
    margin: 0;
}

/* Responsivo Footer */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .identity-col {
        grid-column: span 2;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .identity-col {
        grid-column: span 1;
    }
}


/* --- DISEÑO DE DETALLE ESTILO REVISTA --- */

.product-detail-container {
    display: flex;
    min-height: 100vh;
    padding-top: 100px;
    margin-bottom: 80px;
    background-color: var(--color-hueso);
}

/* Galería (60%) */
.product-gallery {
    width: 60%;
    padding: var(--space-xl) 5%;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.main-image {
    width: 100%;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

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

.gallery-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.secondary-images {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.sec-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-description-magazine {
    padding-top: 0;
}

.editorial-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-beige-desierto);
    display: block;
    margin-bottom: var(--space-sm);
}

.product-description-magazine h3 {
    font-size: var(--text-md);
    margin-bottom: var(--space-md);
}

.product-description-magazine p {
    font-family: var(--font-serif);
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--color-cafe-cafe);
    opacity: 0.9;
}

.product-specs {
    margin-top: 40px;
    display: flex;
    gap: 60px; /* Separación generosa entre bloques */
    padding-top: 0;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-family: var(--font-sans);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6d4c41; /* Café medio */
    margin-bottom: 10px; /* Aire entre título y valor */
}

.spec-value {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: #3E2723; /* Café chocolate oscuro */
    display: block;
    line-height: 1.2;
}

/* Panel Derecho (40%) */
.product-panel {
    width: 40%;
    background-color: var(--color-hueso);
    border-left: 1px solid rgba(193, 154, 107, 0.1);
    display: flex;
    align-items: flex-start; /* Alineación al inicio para flujo vertical natural */
    height: auto;
    overflow: visible;
}

.panel-content {
    padding: var(--space-xl) 15%;
    width: 100%;
}

.breadcrumb {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
    opacity: 0.6;
}

.product-sku-detail {
    font-size: var(--text-xs);
    color: var(--color-beige-desierto);
    letter-spacing: 2px;
}

.product-name-title {
    font-size: var(--text-lg);
    margin: var(--space-xs) 0 var(--space-sm);
    line-height: 1.1;
}

.product-price-large {
    font-size: var(--text-md);
    font-family: var(--font-serif);
    margin-bottom: var(--space-xl);
}

.configurador-title {
    font-family: var(--font-serif);
    color: #3E2723;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
}

.configurador-sastreria {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.config-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.config-item label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-beige-desierto);
}

.config-item select, .config-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(193, 154, 107, 0.3);
    background-color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-cafe-cafe);
    outline: none;
    transition: border-color 0.3s ease;
}

.config-textarea {
    resize: none;
    display: block;
}

.config-item select:focus, .config-textarea:focus {
    border-color: var(--color-cafe-cafe);
}

.btn-whatsapp-lujo {
    width: 100%;
    margin-top: var(--space-md);
    padding: var(--space-md);
    background-color: #25D366; /* Verde original WhatsApp */
    color: white;
    border: none;
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-whatsapp-lujo:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.divider-gold {
    width: 50px;
    height: 1px;
    background-color: var(--color-oro-metalico);
    margin-bottom: var(--space-xl);
}

/* Selector de Tallas Circular */
.size-selector-container {
    margin-bottom: var(--space-xl);
}

.selector-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.selector-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.size-guide {
    font-size: var(--text-xs);
    color: var(--color-beige-desierto);
    text-decoration: underline;
}

.size-options {
    display: flex;
    gap: var(--space-sm);
}

.size-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(193, 154, 107, 0.3);
    background: transparent;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.size-btn:hover {
    border-color: var(--color-cafe-cafe);
}

.size-btn.active {
    background-color: var(--color-cafe-cafe);
    color: var(--color-hueso);
    border-color: var(--color-cafe-cafe);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.add-to-cart {
    width: 100%;
    margin-top: 0;
    padding: var(--space-md);
}

.product-perks {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.perk {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
    color: var(--color-cafe-cafe);
    opacity: 0.8;
}

.perk-icon {
    color: var(--color-oro-metalico);
}

.panel-footer {
    margin-top: var(--space-xxl);
    font-size: 0.75rem;
    opacity: 0.6;
}

.panel-footer a {
    color: var(--color-cafe-cafe);
    font-weight: 700;
}

/* Responsivo */
@media (max-width: 1024px) {
    .product-detail-container {
        flex-direction: column;
    }
    .product-gallery, .product-panel {
        width: 100%;
    }
    .product-panel {
        position: static;
        height: auto;
        border-left: none;
        border-top: 1px solid rgba(193, 154, 107, 0.1);
    }
    .panel-content {
        padding: var(--space-xl) 5%;
    }
    .gallery-row {
        grid-template-columns: 1fr;
    }
}

/* --- ACORDEONES ELEGANTES --- */
.product-accordion {
    margin-top: var(--space-xl);
    border-top: 1px solid rgba(193, 154, 107, 0.2);
}

.accordion-item {
    border-bottom: 1px solid rgba(193, 154, 107, 0.2);
}

.accordion-header {
    width: 100%;
    padding: var(--space-md) 0;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-cafe-cafe);
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--color-beige-desierto);
}

.accordion-header .icon {
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.active .icon {
    transform: rotate(45deg);
}

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    overflow: hidden;
    opacity: 0;
}

.accordion-item.active .accordion-content {
    grid-template-rows: 1fr;
    opacity: 1;
}

.content-inner {
    min-height: 0;
    padding-bottom: var(--space-md);
}

.content-inner p, .content-inner li {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--color-cafe-cafe);
    opacity: 0.8;
}

.content-inner ul {
    padding-left: 1rem;
    margin: 0;
}

.content-inner table {
    width: 100%;
    margin-top: 10px;
    border-collapse: collapse;
}

.content-inner td {
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(193, 154, 107, 0.1);
}

/* --- TIRA DE MINIATURAS --- */
.thumbnail-strip {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.thumb-item {
    width: 80px;
    height: 100px;
    background-color: #000; /* Fondo negro */
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.thumb-item:hover img, .thumb-item.active img {
    opacity: 1;
}

.thumb-item.active {
    border-color: var(--color-oro-metalico);
}

.thumb-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    transition: opacity 0.3s ease;
}

.thumb-item:hover::after, .thumb-item.active::after {
    opacity: 0;
}

/* --- LENIS SMOOTH SCROLL --- */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* --- CURSOR PERSONALIZADO --- */
body {
    cursor: none; /* Ocultar el cursor por defecto */
}

a, button, .size-btn, .thumb-item {
    cursor: none; /* Asegurar que en interactivos también se use el personalizado */
}

#custom-cursor {
    width: 10px;
    height: 10px;
    background-color: var(--color-cafe-cafe);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease-out, background-color 0.3s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply; /* Para un efecto más elegante */
}

/* Estado al pasar sobre imágenes de guayabera (Lupa de Aumento Real) */
#custom-cursor.hover-product {
    width: 110px; /* Tamaño optimizado */
    height: 110px;
    background-color: #fff;
    background-repeat: no-repeat;
    mix-blend-mode: normal;
    backdrop-filter: none;
    border: 2px solid var(--color-oro-metalico);
    box-shadow: 
        0 0 20px rgba(0, 0, 0, 0.2),
        inset 0 0 15px rgba(0, 0, 0, 0.1);
    z-index: 10001;
}

/* Efecto de aumento para el texto de descripción */
.product-description-magazine p, .product-info p, .detail-value {
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
    transform-origin: left center;
}

.product-description-magazine p:hover, .product-info p:hover {
    transform: scale(1.03); /* Ligero aumento al pasar la lupa */
    color: #000;
}

/* Estado al pasar sobre enlaces o botones */
#custom-cursor.hover-link {
    transform: translate(-50%, -50%) scale(2);
    background-color: rgba(75, 54, 33, 0.2);
    border: 1px solid var(--color-cafe-cafe);
}

/* Ocultar en dispositivos táctiles */
@media (hover: none) and (pointer: coarse) {
    #custom-cursor {
        display: none;
    }
    body {
        cursor: auto;
    }
}

/* --- BOTÓN FLOTANTE WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background-color: var(--color-cafe-cafe); /* Café base */
    border: 1px solid var(--color-oro-metalico); /* Borde dorado */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0.8;
}

.whatsapp-float svg {
    width: 24px;
    height: 24px;
    fill: var(--color-oro-metalico); /* Icono dorado */
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    opacity: 1;
    background-color: var(--color-cafe-cafe);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.2);
}

.whatsapp-float:hover svg {
    transform: scale(1.1);
}

/* Ocultar en el cursor personalizado si se prefiere */
.whatsapp-float {
    cursor: none;
}

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

