:root {
    /* Paleta dorada */
    --primary-color: #D4AF37;
    --primary-dark: #B8941F;
    --primary-light: #F4D03F;
    --secondary-color: #C9A961;
    --accent-color: #F5C842;
    --gold-shadow: rgba(212, 175, 55, 0.3);
    
    /* Paleta negra */
    --black: #000000;
    --black-dark: #1A1A1A;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --bg-dark: #1A1A1A;
    --bg-light: #2C2C2C;
    
    /* Neutros */
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 2px solid var(--primary-color);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    min-height: 70px;
}

.logo-img {
    height: 90px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: var(--transition);
}

.logo-img:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switcher {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.lang-switcher:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh; /* Tamaño óptimo: muestra CTA sin scroll y permite ver preview del contenido siguiente */
    min-height: 500px; /* Altura mínima para pantallas medianas */
    max-height: 650px; /* Límite máximo - hero compacto y profesional */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
    overflow: hidden;
}

/* Carousel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    user-select: none;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
    pointer-events: none;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--white);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s both;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--black);
    animation: fadeInUp 1s ease 0.4s both;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--gold-shadow);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 100%;
    padding: 0 0.5rem;
}

/* Services Section */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    display: block;
    color: inherit;
}

.service-card-link {
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 0;
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
    z-index: 0;
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    transition: var(--transition);
    z-index: 1;
}

.service-card-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    color: var(--white);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.service-card-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-card-link:hover .service-card-bg {
    transform: scale(1.1);
}

.service-card-link:hover .service-card-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    text-transform: uppercase;
}

.service-card-link h3 {
    color: var(--white);
    text-transform: uppercase;
    font-size: clamp(1.35rem, 4vw, 1.85rem);
    line-height: 1.25;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.service-card-link p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.5;
    overflow-wrap: break-word;
    word-wrap: break-word;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.image-placeholder {
    background: var(--secondary-color);
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
}

/* Reviews Section */
.reviews {
    background: var(--bg-light);
}

.reviews-container {
    margin-top: 3rem;
    min-height: 300px;
}

.reviews-iframe-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    background: var(--white);
}

.reviews-iframe-wrapper iframe {
    width: 100%;
    max-width: 100%;
    display: block;
    border: none;
}

.reviews-loading {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    padding: 3rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px var(--shadow);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.review-author {
    flex: 1;
}

.review-author h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.review-stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.review-text {
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
}

.review-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Contact Section */
.contact .section-title {
    text-transform: uppercase;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.15rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.contact-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-icon svg {
    width: 28px;
    height: 28px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    flex-shrink: 0;
}

.info-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.info-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Addresses Styling */
.addresses-item {
    align-items: flex-start;
}

.addresses-content {
    width: 100%;
}

.addresses-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact-email-link {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-email-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.address-item {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

.address-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.address-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
}

.btn-address {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.btn-address:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-bottom: 2px solid var(--secondary-color);
    background: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    border-radius: 5px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
    opacity: 0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--text-light);
    transition: top 0.3s ease, left 0.3s ease, font-size 0.3s ease, color 0.3s ease;
    pointer-events: none;
    z-index: 1;
    font-weight: 400;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
    opacity: 1;
    filter: none;
    mix-blend-mode: normal;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.85rem;
    color: var(--primary-color);
    background: var(--white);
    padding: 0 0.5rem;
    z-index: 2;
    font-weight: 400;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
    opacity: 1;
    filter: none;
    mix-blend-mode: normal;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
}

.footer-logo {
    height: 135px;
    width: auto;
    max-width: 450px;
    object-fit: contain;
    margin-bottom: 1rem;
    display: block;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--white);
    transition: var(--transition);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.2);
}

.social-links a svg {
    width: 24px;
    height: 24px;
    display: block;
}

.social-link-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--black);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-link-circle:hover {
    transform: scale(1.1);
    background: var(--bg-dark);
}

.social-link-circle svg {
    width: 24px;
    height: 24px;
    display: block;
}

.footer-logo-with-bird {
    max-width: 100px;
    width: auto;
    height: auto;
    margin-bottom: 1rem;
    display: block;
    object-fit: contain;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
}

.footer-logo-section p {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--white);
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--secondary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carousel Responsive */
@media (max-width: 768px) {
    .carousel-controls {
        padding: 0 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .carousel-indicators {
        bottom: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        height: 55vh; /* Tablets: hero más compacto */
        min-height: 400px;
        max-height: 550px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

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

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

    .contact-wrapper {
        padding: 0 0.5rem;
        gap: 2rem;
    }

    .contact-whatsapp {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    .whatsapp-icon svg {
        width: 24px;
        height: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .addresses-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .reviews-iframe-wrapper iframe {
        height: 500px !important;
    }

    .logo-img {
        height: 60px;
        max-width: 200px;
    }

    .footer-logo {
        height: 90px;
        max-width: 300px;
    }

    .footer-logo-with-bird {
        max-width: 100px;
    }

    .nav-wrapper {
        padding: 1rem 0;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh; /* Móvil: priorizar contenido sobre imagen */
        min-height: 350px;
        max-height: 450px;
    }

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

    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }

    .contact-wrapper {
        max-width: 100%;
        gap: 1.75rem;
    }

    .contact-whatsapp {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .address-item {
        padding: 0.875rem;
    }

    .address-item p {
        word-wrap: break-word;
    }

    .info-item {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .logo-img {
        height: 45px;
        max-width: 150px;
    }

    .footer-logo {
        height: 67.5px;
        max-width: 225px;
    }

    .footer-logo-with-bird {
        max-width: 40px;
    }

    .nav-wrapper {
        padding: 0.75rem 0;
    }
}

/* Service Pages Responsive */
@media (max-width: 768px) {
    .service-hero-title {
        font-size: 2.5rem !important;
    }
    
    .service-hero-subtitle {
        font-size: 1.2rem !important;
    }
    
    .service-treatments {
        grid-template-columns: 1fr !important;
    }
    
    .service-benefits {
        padding: 2rem !important;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 120px 0 80px !important;
    }
    
    .service-hero-title {
        font-size: 2rem !important;
    }
    
    .service-hero-subtitle {
        font-size: 1rem !important;
    }
    
    .service-cta h2 {
        font-size: 2rem !important;
    }
    
    .service-cta p {
        font-size: 1rem !important;
    }

    .reviews-iframe-wrapper iframe {
        height: 450px !important;
    }
}

/* Force all treatment card titles to uppercase */
.treatment-card h3,
.service-treatments h3,
.service-benefits h3,
.service-cta h2,
.service-hero-title,
.service-hero h1 {
    text-transform: uppercase !important;
}

/* Force all section titles to uppercase */
section h2,
section h3 {
    text-transform: uppercase;
}

/* Hero titles */
.hero h1,
.hero h2 {
    text-transform: uppercase;
}

/* ===== Lista compacta de servicios (acordeón) ===== */
.service-treatments-compact {
    display: flex !important;
    flex-direction: column;
    gap: 0.5rem;
    grid-template-columns: 1fr !important;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.treatment-row {
    background: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    box-shadow: 0 1px 4px var(--shadow);
    overflow: hidden;
}

.treatment-row-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: var(--primary-color);
}

.treatment-row-summary::-webkit-details-marker,
.treatment-row-summary::marker {
    display: none;
}

.treatment-row-summary::after {
    content: '';
    flex-shrink: 0;
    width: 0.6em;
    height: 0.6em;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.treatment-row[open] .treatment-row-summary::after {
    transform: rotate(-135deg);
}

.treatment-row-title {
    flex: 1;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    text-align: left;
}

.treatment-row-meta {
    flex-shrink: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.treatment-row-body {
    padding: 0 1.25rem 1.25rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.treatment-row-desc,
.treatment-row-note {
    margin: 1rem 0 0;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
}

.treatment-row-note {
    font-size: 0.9rem;
    font-style: italic;
}

.treatment-reservar-btn {
    font-size: 0.95rem;
    padding: 0.5rem 1.25rem;
}

@media (max-width: 768px) {
    .treatment-row-summary {
        flex-wrap: wrap;
    }
    .treatment-row-meta {
        width: 100%;
        text-align: left;
        white-space: normal;
    }
}

