/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: #000000;
    transition: all 0.3s ease;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    font-weight: 300;
    color: #000000;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: #dd699b;
    left: 20%;
    bottom: -10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(221, 105, 155, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(221, 105, 155, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(221, 105, 155, 0);
    }
}

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo-container {
    width: auto;
    height: auto;
}

.header-title {
    font-family: 'Dancing Script', cursive;
    color: #dd699b;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
    text-shadow: 0px 2px 4px rgba(221, 105, 155, 0.2);
    transition: all 0.3s ease;
}

.header-title:hover {
    transform: scale(1.05);
    text-shadow: 0px 3px 6px rgba(221, 105, 155, 0.3);
}

.desktop-nav ul {
    display: flex;
    list-style: none;
}

.desktop-nav ul li {
    margin-left: 1.5rem;
}

.desktop-nav ul li a {
    font-size: 1.1rem;
    font-weight: 400;
    position: relative;
}

.desktop-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #dd699b;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.desktop-nav ul li a:hover::after {
    width: 100%;
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #dd699b;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: rotate(90deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    z-index: 1001;
    padding: 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    text-align: right;
    margin-bottom: 2rem;
}

.mobile-menu-close i {
    font-size: 1.5rem;
    color: #dd699b;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-menu-close i:hover {
    transform: rotate(90deg);
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateX(20px);
    animation: slideInMenuItems 0.5s forwards;
}

.mobile-menu ul li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu ul li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu ul li:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu ul li:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu ul li:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInMenuItems {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu ul li a {
    font-size: 1.2rem;
    color: #000;
    transition: color 0.3s ease, transform 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.mobile-menu ul li a:hover {
    color: #dd699b;
    transform: translateX(5px);
}

/* Hero section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Decorative elements */
.decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(221, 105, 155, 0.1);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 20%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Sparkle particles */
.sparkle-particle {
    position: absolute;
    background-color: #dd699b;
    border-radius: 50%;
    opacity: 0.6;
    pointer-events: none;
    animation: sparkle infinite;
}

@keyframes sparkle {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    z-index: 1;
    position: relative;
    width: 90%;
    max-width: 500px;
}

.hero-logo {
    margin-bottom: 2rem;
    position: relative;
}

.hero-logo img {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(221, 105, 155, 0.3));
    transition: transform 0.5s ease;
}

.hero-logo:hover img {
    transform: scale(1.05) rotate(2deg);
}

.hero-logo::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(221, 105, 155, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -20px;
    left: 0;
    filter: blur(5px);
}

.btn-primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #dd699b;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #dd699b;
    box-shadow: 0 4px 15px rgba(221, 105, 155, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    background-color: transparent;
    color: #dd699b;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(221, 105, 155, 0.3);
}

.btn-primary:hover::before {
    width: 100%;
}

/* Secciones animadas */
.animate-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animaciones de elementos */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Destacados section */
#destacados {
    padding: 5rem 5%;
    text-align: center;
    background-color: rgba(221, 105, 155, 0.03);
    position: relative;
    overflow: hidden;
}

#destacados::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(221, 105, 155, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px;
    left: -100px;
    border-radius: 50%;
    z-index: 0;
}

#destacados::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(221, 105, 155, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -50px;
    right: -50px;
    border-radius: 50%;
    z-index: 0;
}

.destacados-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.destacado-item {
    flex: 1;
    min-width: 250px;
    max-width: 100%;
    padding: 2.5rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(221, 105, 155, 0.1);
    transform: translateY(30px);
    opacity: 0;
}

.destacado-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(221, 105, 155, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.destacado-item:first-child {
    flex-basis: 100%;
    max-width: 100%;
}

.destacado-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(221, 105, 155, 0.1);
    border-color: #dd699b;
}

.destacado-item:hover::before {
    opacity: 1;
}

.destacado-icon {
    font-size: 2.5rem;
    color: #dd699b;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.destacado-item:hover .destacado-icon {
    transform: scale(1.1);
}

.destacado-item h3 {
    font-weight: 500;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.destacado-item:hover h3 {
    color: #dd699b;
}

.destacado-item p {
    color: rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
}

/* Destinos de envío */
.destinos-envio {
    position: relative;
    z-index: 1;
}

.destinos-envio p {
    margin-bottom: 1rem;
    font-weight: 500;
    color: #333;
}

.destinos-envio ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.8rem;
    list-style: none;
    margin-top: 1.5rem;
    text-align: left;
}

.destinos-envio li {
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.destinos-envio li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #dd699b;
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.destinos-envio li:hover {
    transform: translateX(5px);
    color: #dd699b;
}

.destinos-envio li:hover::before {
    transform: translateY(-50%) scale(1.3);
    background-color: #c55686;
}

/* Products section */
#productos {
    min-height: 100vh;
    padding: 6rem 5% 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.categorias-menu {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.categoria-btn {
    padding: 0.5rem 1.5rem;
    background-color: transparent;
    border: 1px solid #dd699b;
    border-radius: 50px;
    color: #dd699b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.categoria-btn.active, .categoria-btn:hover {
    background-color: #dd699b;
    color: white;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.producto-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(221, 105, 155, 0.2);
    padding-bottom: 1.5rem;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: calc(0.2s * var(--i, 1));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.producto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(221, 105, 155, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.producto-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(221, 105, 155, 0.15);
    border-color: #dd699b;
}

.producto-card:hover::before {
    opacity: 1;
}

.producto-img {
    overflow: hidden;
    height: 250px;
    position: relative;
}

.producto-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.producto-card:hover .producto-img::after {
    opacity: 1;
}

.producto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.producto-card:hover .producto-img img {
    transform: scale(1.1) rotate(1deg);
}

.producto-card h3 {
    margin: 1.5rem 0 0.5rem;
    color: #000000;
    font-size: 1.3rem;
    padding: 0 1rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.producto-card p {
    color: rgba(0, 0, 0, 0.7);
    padding: 0 1.2rem;
    margin-bottom: 1.8rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.btn-whatsapp {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #dd699b;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(221, 105, 155, 0.2);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.btn-whatsapp:hover {
    background-color: #c55686;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(221, 105, 155, 0.3);
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp i {
    margin-right: 8px;
}

/* Testimonios section */
#testimonios {
    padding: 5rem 5%;
    text-align: center;
    background-color: rgba(221, 105, 155, 0.03);
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonio-item {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(221, 105, 155, 0.1);
}

.testimonio-item iframe {
    width: 100%;
    max-width: 100%;
    border: none;
}

/* Contact section */
#contacto {
    min-height: 50vh;
    padding: 5rem 5%;
    text-align: center;
    background-color: rgba(221, 105, 155, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contacto-info {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.redes-sociales {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 60px;
    border-radius: 10px;
    background-color: transparent;
    border: 2px solid #dd699b;
    color: #dd699b;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: calc(0.1s * var(--i, 1));
}

.social-icon:hover {
    transform: translateY(-10px);
    background-color: #dd699b;
    color: #ffffff;
}

.social-icon.whatsapp {
    --i: 1;
}

.social-icon.instagram {
    --i: 2;
}

.social-icon.facebook {
    --i: 3;
}

/* Horario de atención */
.horario-atencion {
    margin-top: 2rem;
    padding: 2rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.horario-atencion:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(221, 105, 155, 0.1);
}

.horario-atencion h3 {
    color: #dd699b;
    margin-bottom: 1.8rem;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.horario-atencion h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background: #dd699b;
    left: 25%;
    bottom: -5px;
}

.horario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.2rem;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: rgba(221, 105, 155, 0.03);
}

.horario-item:hover {
    background-color: rgba(221, 105, 155, 0.08);
    transform: translateY(-3px);
}

.dia {
    font-weight: 600;
    color: #333;
    margin-right: 2rem;
}

.hora {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
}

/* Footer */
footer {
    padding: 1.5rem 5%;
    text-align: center;
    background-color: #f9f9f9;
}

footer p {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

/* Make sure animations trigger when sections come into view */
.productos-grid .producto-card:nth-child(1) { --i: 1; }
.productos-grid .producto-card:nth-child(2) { --i: 2; }
.productos-grid .producto-card:nth-child(3) { --i: 3; }

/* Responsive styles */
@media (max-width: 1200px) {
    .testimonios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .productos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .destacados-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .destacado-item {
        max-width: 100%;
        margin-bottom: 2rem;
        padding: 2rem;
    }
    
    .destacado-item:last-child {
        margin-bottom: 0;
    }
    
    .destinos-envio ul {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    .horario-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .productos-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    header {
        padding: 0.8rem 5%;
    }
    
    .hero-content {
        width: 90%;
    }
    
    .hero-logo img {
        max-width: 200px;
    }
    
    .destacados-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .productos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .social-icon {
        width: 120px;
    }
    
    .destinos-envio ul {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .testimonios-grid {
        grid-template-columns: 1fr;
    }
    
    .horario-grid {
        grid-template-columns: 1fr 1fr;
    }

    .btn-whatsapp-grande {
        padding: 0.9rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .destacado-item {
        padding: 1.5rem;
    }
    
    .destinos-envio ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .destacado-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .horario-grid {
        grid-template-columns: 1fr;
    }
    
    .productos-grid {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 0 1rem;
    }
    
    .producto-card {
        max-width: 100%;
    }

    .btn-whatsapp-grande {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        width: 90%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .destinos-envio ul {
        grid-template-columns: 1fr;
    }
    
    .destacado-item {
        padding: 1.2rem;
    }
    
    .hero-logo img {
        max-width: 150px;
    }
    
    .redes-sociales {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .social-icon {
        width: 200px;
    }
    
    .categorias-menu {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .categoria-btn {
        width: 80%;
    }
    
    .productos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dia {
        margin-right: 1rem;
    }
    
    .horario-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .dia {
        margin-bottom: 0.5rem;
    }

    .btn-whatsapp-grande {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* Botón grande de WhatsApp */
.consulta-whatsapp {
    margin-top: 3rem;
    text-align: center;
}

.btn-whatsapp-grande {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: #dd699b;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.2rem;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 25px rgba(221, 105, 155, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid #dd699b;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.btn-whatsapp-grande::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.btn-whatsapp-grande:hover {
    background-color: transparent;
    color: #dd699b;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(221, 105, 155, 0.4);
}

.btn-whatsapp-grande:hover::before {
    left: 100%;
}

.btn-whatsapp-grande i {
    margin-right: 10px;
    font-size: 1.3rem;
} 