:root {
    /* Color Palette */
    --primary-color: #8e44ad;
    /* Wisteria */
    --primary-dark: #6c3483;
    --primary-light: #d2b4de;
    --secondary-color: #9b59b6;
    /* Amethyst */
    --accent-color: #f7dc6f;
    /* Soft Gold */
    --bg-light: #f4ecf7;
    /* Very light purple bg */
    --bg-white: #ffffff;
    --text-dark: #4a235a;
    --text-light: #fdfefe;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, rgba(142, 68, 173, 0.9) 0%, rgba(155, 89, 182, 0.8) 100%);
    --gradient-btn: linear-gradient(to right, #8e44ad, #9b59b6);
    --gradient-soft: linear-gradient(to bottom, #f4ecf7, #ffffff);

    /* Fonts */
    --font-heading: 'Cinzel Decorative', cursive;
    --font-body: 'Lato', sans-serif;
    --font-script: 'Great Vibes', cursive;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.section-padding {
    padding: 80px 0;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient-btn);
    color: white;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.4);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.6);
}

.btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

/* Header & Nav */
#main-header {
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 70px;
    /* Force consistent height */
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 50%;
}

#main-nav ul {
    display: flex;
    gap: 15px;
    /* Reduced from 25px */
    align-items: center;
}

#main-nav a {
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--text-dark);
    white-space: nowrap;
    /* Prevent "Sobre Mí" wrap */
}

#main-nav a.active,
#main-nav a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 20px;
    white-space: nowrap;
    /* Prevent wrapping */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(108, 92, 231, 0.3);
}

.booking-btn {
    background: var(--secondary-color);
    /* Different color */
    margin-left: 10px;
    /* Space from Contacto */
    box-shadow: 0 4px 15px rgba(255, 118, 117, 0.4);
}

.booking-btn:hover {
    background: #e66767;
    box-shadow: 0 6px 20px rgba(255, 118, 117, 0.6);
}

.admin-link {
    font-size: 0.85rem !important;
    opacity: 0.7;
    margin-left: 10px;
    color: var(--primary-dark) !important;
}

.admin-link:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
}

/* --- Test CTA Section --- */
.test-cta-section {
    padding: 60px 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.test-invitation-card {
    border: 2px dashed #9b59b6;
    /* Purple dashed border */
    background-color: rgba(155, 89, 182, 0.05);
    /* Light purple tint */
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
}

.test-invitation-card h2 {
    color: #4a235a;
    font-family: 'Cinzel Decorative', cursive;
    font-size: clamp(1.4rem, 5vw, 2rem);
    margin-bottom: 10px;
    word-break: normal;
    overflow-wrap: break-word;
}

.test-decorative-line {
    height: 1px;
    background-color: #d2b4de;
    width: 150px;
    margin: 15px auto 25px;
}

.test-invitation-card p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-test {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-test:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.4);
}

/* --- Test Modal Styles --- */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    /* High z-index */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black w/ opacity */
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}

.test-modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(155, 89, 182, 0.2);
}

.test-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.test-step.active {
    display: block;
}

.test-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.btn-test-option {
    background: #fdfbfd;
    border: 1px solid #e0cce0;
    /* Soft purple */
    padding: 15px;
    border-radius: 12px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #555;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-test-option:hover {
    background: #f4ecf7;
    /* Very light purple */
    border-color: #9b59b6;
    transform: translateX(5px);
}

.result-icon-container {
    font-size: 4rem;
    color: #9b59b6;
    margin: 20px 0;
}

.result-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-secondary-outline {
    background: transparent;
    border: 2px solid #9b59b6;
    color: #9b59b6;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #aaa;
    z-index: 10;
}

/* Calendar Modal */
.calendar-modal-content {
    background: #fff;
    padding: 0;
    border-radius: 20px;
    max-width: 900px;
    width: 95%;
    height: 85vh;
    /* Taller for calendar */
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    /* Allow scrolling */
    max-height: 90vh;
    /* dynamic height */
    height: auto;
    /* allow auto height up to max */
}

.calendar-header {
    padding: 20px;
    background: var(--bg-light);
    border-bottom: 1px solid rgba(142, 68, 173, 0.1);
}

.calendar-header h2 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.calendar-container {
    flex-grow: 1;
    width: 100%;
    height: 100%;
}

.calendar-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Custom Calendar Styles */
.custom-calendar-wrapper {
    padding: 20px;
}

.calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-controls h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    text-transform: capitalize;
}

.btn-calendar-nav {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.2s;
}

.btn-calendar-nav:hover {
    background: var(--bg-light);
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: bold;
    color: #888;
    margin-bottom: 10px;
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
}

.calendar-day:hover:not(.empty) {
    background-color: var(--bg-light);
    color: var(--primary-dark);
}

.calendar-day.selected {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
}

.calendar-day.today {
    border: 2px solid var(--primary-color);
}

.calendar-day.empty {
    cursor: default;
}

.time-slots-container {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-slots-container h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 500px;
}

.time-slot {
    padding: 10px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.time-slot:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--bg-light);
}

.time-slot.selected {
    background: var(--gradient-btn);
    color: white;
    border: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: 50% 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.7), rgba(46, 134, 193, 0.5));
    mix-blend-mode: overlay;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, rgba(142, 68, 173, 0.8) 80%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 20px;
}

.hero h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 3.5rem);
    /* Fluid typography */
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.script-font {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 10vw, 4rem);
    /* Fluid typography */
    color: white;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    margin-bottom: -10px;
    display: block;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.glow-effect {
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px var(--primary-light);
    }

    to {
        box-shadow: 0 0 25px var(--primary-color), 0 0 10px white;
    }
}

/* Headers Common */
.section-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-header h2 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    /* Fluid typography */
    display: inline-block;
    padding: 0 15px;
    word-break: normal;
    overflow-wrap: break-word;
}

.decorative-line {
    color: var(--primary-light);
    font-size: 1.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 50px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: white;
    padding: 0 0 30px;
    /* Top padding moved to icon container */
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(142, 68, 173, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(142, 68, 173, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    /* Ensure icon container gradient respects border radius */
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(142, 68, 173, 0.15);
}

.service-card h3 {
    padding: 0 20px;
    margin-top: 20px;
}

.service-card p {
    padding: 0 20px;
}

.card-image {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background: white;
    border-radius: 50%;
    border: 1px solid rgba(142, 68, 173, 0.15);
    font-size: 1.5rem;
    /* For icons */
    box-shadow: 0 8px 20px rgba(142, 68, 173, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    /* For images */
}

.service-card:hover .card-image {
    background: var(--gradient-btn);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(142, 68, 173, 0.25);
    border-color: transparent;
}

.service-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.btn-text {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: auto;
    display: inline-block;
    padding-top: 15px;
}

/* Sobre Mí */
.bg-soft {
    background: linear-gradient(to right, #fdfefe, #f4ecf7);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.image-frame {
    width: min(300px, 80vw);
    height: min(300px, 80vw);
    background: var(--primary-light);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 0 10px rgba(142, 68, 173, 0.1), 0 0 0 20px rgba(142, 68, 173, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.decorative-line-short {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px 0 20px;
}

/* Productos / Blog */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(142, 68, 173, 0.08);
    display: flex;
    flex-direction: column;
    padding-bottom: 25px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(142, 68, 173, 0.12);
}

.product-img-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-pulse {
    animation: cartPulse 0.4s ease-out;
}

@keyframes cartPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* Professional Blog Icons */
.blog-icon-container {
    padding: 30px 0 10px;
    display: flex;
    justify-content: center;
    background: linear-gradient(to bottom, var(--bg-light) 0%, #fff 100%);
}

.blog-icon-circle {
    width: 85px;
    height: 85px;
    background: white;
    border: 1px solid rgba(142, 68, 173, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    box-shadow: 0 8px 20px rgba(142, 68, 173, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .blog-icon-circle,
.service-card:hover .card-image {
    background: var(--gradient-btn);
    color: white !important;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(142, 68, 173, 0.25);
    border-color: transparent;
}

.service-card:hover .card-image i {
    color: white;
}

.product-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    margin: 20px 15px 10px;
    font-size: 1.1rem;
}

.product-card p {
    padding: 0 15px;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 0.95rem;
}

.date {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-top: 15px;
    padding-bottom: 20px;
}


/* Contacto */
.bg-dark {
    background: var(--primary-dark);
    color: white;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.contact-container {
    max-width: 600px;
}

.bg-dark .section-header h2 {
    color: white;
}

.bg-dark p {
    color: var(--primary-light);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: clamp(20px, 5vw, 40px);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    box-sizing: border-box;
    /* Fix overflow */
    resize: vertical;
    /* Prevent horizontal resize */
}

.full-width {
    width: 100%;
}

/* Footer */
footer {
    background: #333;
    color: #bbb;
    padding: 40px 0 20px;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: white;
}

.social-icons a {
    color: white;
    margin-left: 15px;
    font-size: 1.1rem;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
}

section {
    scroll-margin-top: 80px;
    /* Space for the fixed header */
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .logo {
        font-size: 1.1rem;
        /* Smaller font for mobile/tablet */
        gap: 8px;
    }

    .logo-img {
        height: 40px;
        /* Smaller logo for mobile/tablet */
    }

    #main-nav {
        position: absolute;
        top: 70px;
        /* Match header height */
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    #main-nav.open {
        max-height: 500px;
        /* Increased to avoid clipping */
    }

    #main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .about-image {
        order: -1;
    }

    .about-content {
        text-align: center;
    }

    .about-content .section-header {
        text-align: center;
    }

    .about-content .section-header h2 {
        padding: 0;
    }

    .about-content div[style*="text-align: left"] {
        text-align: center !important;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .newsletter-card {
        padding: 40px 20px;
    }

    .faq-question {
        padding: 20px 25px;
    }

    .faq-answer-inner {
        padding: 0 25px 25px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

/* Extra Small Devices */
@media (max-width: 400px) {
    .container {
        padding: 0 10px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-img {
        height: 40px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 110px;
    width: 60px;
    height: 60px;
    background: var(--gradient-btn);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.6);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 110px;
        right: 40px;
    }
}

/* Expandable Content */
.expandable-content {
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.btn-expand-pill {
    padding: 10px 25px;
    background: var(--gradient-btn);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.btn-expand-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.5);
    background: var(--primary-dark);
}

.btn-expand-pill i {
    transition: transform 0.3s ease;
}

/* Dual Buttons Layout */
.card-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.product-card-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 15px;
}

.btn-pay-small {
    background: #ffffff;
    border: 2px solid #5d2b83;
    /* Transbank Purple */
    color: #5d2b83;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-pay-small:hover {
    background: #5d2b83;
    color: white;
    transform: translateY(-2px);
}

.btn-pay-small i {
    color: #ef434e;
}

.btn-pay-small:hover i {
    color: white;
}

/* Shopping Cart Styles */
.cart-nav-item {
    margin-left: 20px;
}

.cart-btn {
    position: relative;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.cart-btn:hover {
    color: var(--primary-dark);
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #e74c3c;
    color: white;
    font-size: 0.7rem;
    padding: 2px 5px;
    border-radius: 50%;
    font-weight: bold;
    min-width: 16px;
    text-align: center;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    z-index: 2100;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .blog-post-content {
        padding: 25px;
        margin-top: -50px;
    }

    .blog-post-content h2 {
        font-size: 1.4rem !important;
        /* Force smaller size on mobile */
        word-break: break-word;
        /* Break long words like AUTOCONOCIMIENTO */
        hyphens: auto;
        /* Add hyphens if supported */
    }

    .blog-hero {
        height: 40vh;
    }
}

@media (max-width: 480px) {
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}

.cart-drawer.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2050;
    display: none;
}

.cart-overlay.show {
    display: block;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
    font-family: var(--font-heading);
    color: var(--primary-dark);
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.item-info h4 {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
    color: var(--primary-dark);
}

.item-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}

.remove-item {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    padding: 5px;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.remove-item:hover {
    color: #c0392b;
}

.item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    background: #f4ecf7;
    border-radius: 20px;
    padding: 2px;
}

.qty-btn {
    background: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.qty-btn:hover {
    background: var(--primary-color);
    color: white;
}

.qty-val {
    padding: 0 12px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.item-total-remove {
    display: flex;
    align-items: center;
    gap: 15px;
}

.item-subtotal {
    font-weight: 700;
    color: var(--primary-dark);
}

.btn-clear-cart {
    background: transparent;
    border: none;
    color: #999;
    padding: 5px 0;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
}

.btn-clear-cart:hover {
    color: #e74c3c;
    transform: translateY(-1px);
}

.btn-clear-cart i {
    font-size: 0.9rem;
}

.cart-footer {
    padding: 25px;
    border-top: 1px solid #eee;
    background: #fdfefe;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.btn-checkout {
    width: 100%;
    padding: 15px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
}

.btn-checkout:hover {
    background: #128c7e;
}

.empty-msg {
    text-align: center;
    color: #999;
    margin-top: 50px;
}

/* Add to Cart Buttons */
.btn-add-cart {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-add-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(142, 68, 173, 0.3);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
    margin-top: 10px;
}

.btn-add-cart-simple {
    background: white;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 22px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
    font-family: var(--font-body);
}

.btn-add-cart-simple:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(142, 68, 173, 0.2);
}

/* Testimonials Section Styles */
#testimonios {
    background-color: var(--bg-soft);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(142, 68, 173, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(142, 68, 173, 0.03);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(142, 68, 173, 0.12);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 20px;
    opacity: 0.4;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.testimonial-stars {
    color: #f1c40f;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.testimonial-name {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 700;
}

/* Modal Style */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 2000;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

/* Custom Confirmation Modal */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    animation: slideIn 0.3s;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-confirm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-confirm.show {
    display: flex;
    opacity: 1;
}

.modal-content-confirm {
    background: white;
    padding: 35px;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-confirm.show .modal-content-confirm {
    transform: translateY(0);
}

.modal-content-confirm h3 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.modal-content-confirm p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-modal-primary {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.btn-modal-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.btn-modal-secondary {
    background: #f4f4f4;
    color: #666;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.btn-modal-secondary:hover {
    background: #eee;
    color: var(--text-dark);
}

/* Modern FAQ Accordion - Grid Approach */
.faq-grid {
    max-width: 1000px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(142, 68, 173, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.02);
    overflow: hidden;
}

.faq-question {
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: transparent;
}

.faq-question h3 {
    font-size: clamp(1rem, 4vw, 1.3rem);
    color: var(--primary-dark);
    margin: 0;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a {
    color: var(--primary-light);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: white;
    transform: translateY(-3px) scale(1.1);
    filter: drop-shadow(0 0 8px var(--primary-light));
}

.faq-answer-container {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fdfefe;
    border-radius: 0 0 20px 20px;
}

.faq-item.active .faq-answer-container {
    grid-template-rows: 1fr;
}

.faq-answer-content {
    overflow: hidden;
}

.faq-answer-inner {
    padding: 0 35px 35px;
}

.faq-answer-inner p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(142, 68, 173, 0.1);
}

/* Branded Webpay Button */
.btn-pay-webpay {
    background: #ffffff;
    border: 2px solid #5d2b83;
    /* Transbank Purple */
    color: #5d2b83;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Lato', sans-serif;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn-pay-webpay::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(93, 43, 131, 0.1), transparent);
    transition: all 0.5s;
}

.btn-pay-webpay:hover::before {
    left: 100%;
}

.btn-pay-webpay:hover {
    background: #5d2b83;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(93, 43, 131, 0.2);
}

.btn-pay-webpay i {
    font-size: 1.1rem;
    color: #ef434e;
    /* Transbank Red/Pink */
}

.btn-pay-webpay:hover i {
    color: white;
}

/* Premium Enhancements */

/* 1. Aura Cursor */
#aura-cursor {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.15) 0%, rgba(142, 68, 173, 0) 70%);
    position: fixed;
    top: -500px;
    /* Stay out of view until mouse move */
    left: -500px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s, opacity 0.3s;
    filter: blur(20px);
    opacity: 0;
}

#aura-cursor.visible {
    opacity: 1;
}

#aura-cursor.active {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.25) 0%, rgba(142, 68, 173, 0) 70%);
}

@media (max-width: 768px) {
    #aura-cursor {
        display: none;
    }
}

/* 2. Ethereal Animations */
.fade-in-ethereal {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px) scale(0.98);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-ethereal.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
}

/* 3. Newsletter Section */
#newsletter {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.newsletter-card {
    background: var(--bg-light);
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(142, 68, 173, 0.1);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(142, 68, 173, 0.1);
}

.newsletter-card h2 {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    word-break: normal;
    overflow-wrap: break-word;
}

.newsletter-card p {
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
}

.form-group-minimal {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.form-group-minimal input {
    flex: 1;
    padding: 15px 25px;
    border-radius: 30px;
    border: 1px solid rgba(142, 68, 173, 0.2);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    background: white;
    transition: border-color 0.3s;
}

.form-group-minimal input:focus {
    border-color: var(--primary-color);
}

.newsletter-disclaimer {
    font-size: 0.85rem;
    color: #999 !important;
    margin-top: 20px !important;
    font-style: italic;
    text-align: center;
}

@media (max-width: 600px) {
    .newsletter-card {
        padding: 40px 20px;
    }

    .test-invitation-card {
        padding: 30px 20px;
    }

    .form-group-minimal {
        flex-direction: column;
    }

    .form-group-minimal button {
        width: 100%;
    }
}

/* Booking FAB */
.booking-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: bounceIn 0.5s;
}

.booking-fab button {
    padding: 15px 30px;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(142, 68, 173, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .booking-fab {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        width: 90%;
        display: flex;
        justify-content: center;
    }

    .booking-fab button {
        width: 100%;
        justify-content: center;
    }
}

/* Promo Modal Styles */
.modal-promo {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.5s ease;
}

.modal-promo-content {
    background: white;
    width: 90%;
    max-width: 420px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    animation: scaleModal 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(142, 68, 173, 0.1);
}

@keyframes scaleModal {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-promo {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modal-promo-content:not(.no-image) .close-promo {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: none;
    top: 15px;
    right: 15px;
}

.close-promo:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: rotate(90deg);
}

.promo-header-img {
    height: 140px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: var(--bg-light);
    /* Fallback color */
}

.modal-promo-content.no-image .promo-header-img {
    height: 0;
    display: none;
    margin: 0;
    padding: 0;
}

.promo-header-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to top, white, transparent);
}

.promo-body {
    padding: 25px;
    text-align: center;
}

.modal-promo-content.no-image .promo-body {
    padding-top: 45px;
}

.promo-body h2 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 10px;
    margin-top: 5px;
}

.promo-date-badge {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
    border: 1px solid var(--primary-light);
}

.promo-price-tag {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-family: var(--font-body);
}

.promo-body p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn-promo-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 5;
}

.btn-promo-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
    color: white;
}