/* ===== VARIABLES ===== */
:root {
    --primary-color: #3a7bd5;
    --secondary-color: #00d4bd;
    --accent-color: #f5a623;
    --text-color: #333333;
    --light-text: #ffffff;
    --background-color: #ffffff;
    --light-bg: #f8fafc;
    --border-color: #e5e9f2;
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.25rem;
    font-weight: 700;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===== UTILITIES ===== */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-header p {
    color: #555;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Botones */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 30px;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(58, 123, 213, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(58, 123, 213, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-outline:hover {
    background-color: var(--light-bg);
    border-color: var(--primary-color);
}

/* Navegación */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.logo span {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.nav-links ul {
    display: flex;
    gap: 25px;
}

.nav-links ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width 0.3s;
}

.nav-links ul li a:hover {
    color: var(--primary-color);
}

.nav-links ul li a:hover::after {
    width: 100%;
}

.fa-bars, .fa-times {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 170px 0 100px;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-content h1 {
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero-content h1 span {
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    background-color: rgba(0, 212, 189, 0.2);
    bottom: 5px;
    left: 0;
    z-index: -1;
}

.hero-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.trust-indicators {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.indicator {
    display: flex;
    flex-direction: column;
}

.indicator .number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
}

.indicator .text {
    font-size: 0.9rem;
    color: #777;
}

/* Tratamientos Destacados */
.treatments {
    padding: 100px 0;
    background-color: var(--background-color);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.treatment-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.treatment-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.treatment-content {
    padding: 25px;
}

.treatment-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.treatment-content p {
    color: #666;
    margin-bottom: 15px;
}

.benefits {
    margin-bottom: 20px;
}

.benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.9rem;
}

.benefits li i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.view-all {
    text-align: center;
}

/* Promoción Especial */
.promo {
    background: linear-gradient(120deg, rgba(58, 123, 213, 0.9), rgba(0, 212, 189, 0.9)), url('img/promo-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.promo-content {
    max-width: 700px;
    margin: 0 auto;
}

.promo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.promo-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.promo-price {
    margin-bottom: 30px;
}

.old-price {
    display: block;
    text-decoration: line-through;
    font-size: 1.25rem;
    opacity: 0.7;
    margin-bottom: 5px;
}

.current-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.promo-disclaimer {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 30px;
}

.promo .btn-primary {
    background: var(--accent-color);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.promo .btn-primary:hover {
    box-shadow: 0 7px 20px rgba(245, 166, 35, 0.4);
}

/* Por qué elegirnos */
.why-us {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
}

/* Testimonios */
.testimonials {
    padding: 100px 0;
    background-color: var(--background-color);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-right: 3px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '\201C';
    font-size: 3rem;
    position: absolute;
    left: -15px;
    top: -20px;
    color: rgba(58, 123, 213, 0.1);
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #777;
}

.testimonials-cta {
    text-align: center;
}

/* Antes y Después */
.before-after {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.before-after-item {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.before-after-item .treatment-image {
    width: 100%;
    overflow: hidden;
}

.before-after-item .treatment-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.before-after-item:hover .treatment-image img {
    transform: scale(1.03);
}

.treatment-name {
    padding: 15px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.treatment-name p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.before-after-note {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
}

/* Sobre Nosotros */
.about-us {
    padding: 100px 0;
    background-color: var(--background-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
}

.doctor-profile {
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.doctor-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.doctor-profile h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.doctor-profile span {
    display: block;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
}

.doctor-profile p {
    font-style: italic;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* FAQs */
.faqs {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.accordion-button {
    width: 100%;
    background-color: white;
    border: none;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-button:hover {
    color: var(--primary-color);
}

.accordion-button i {
    font-size: 0.9rem;
    transition: var(--transition);
}

.accordion-item.active .accordion-button i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.accordion-item.active .accordion-content {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* Contacto */
.contact {
    padding: 100px 0;
    background-color: var(--background-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form h2 {
    margin-bottom: 10px;
}

.contact-form p {
    color: #555;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

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

.form-group.terms {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.terms input {
    width: auto;
}

.form-group.terms label {
    font-size: 0.85rem;
    color: #555;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.info-box {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.info-box p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
}

.info-box p i {
    width: 20px;
    margin-right: 10px;
    color: var(--primary-color);
}

.map {
    margin-top: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* WhatsApp Flotante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

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

/* Botón Volver Arriba */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(58, 123, 213, 0.3);
    transition: var(--transition);
}

.back-to-top a:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(58, 123, 213, 0.4);
}

/* Footer */
.footer {
    background-color: #212841;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

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

.footer-logo h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.footer-logo span {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.footer-logo p {
    margin-top: 15px;
    font-size: 0.9rem;
}

.footer h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul li,
.footer-treatments ul li {
    margin-bottom: 12px;
}

.footer-links ul li a,
.footer-treatments ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-treatments ul li a:hover {
    color: white;
    margin-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact p i {
    width: 20px;
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.footer-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.75rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero .container,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 0;
        margin-bottom: 30px;
    }
    
    .cta-button {
        display: none;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        z-index: 1001;
        transition: 0.4s;
        padding: 80px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .fa-bars, .fa-times {
        display: block;
    }
    
    .fa-times {
        position: absolute;
        top: 30px;
        right: 30px;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    /* Ajustar botones flotantes en móvil */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .back-to-top {
        bottom: 20px;
        left: 20px;
    }
    
    .back-to-top a {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 15px;
    }
    
    .promo-content h2 {
        font-size: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }

    /* Ajustar más los botones flotantes en pantallas muy pequeñas */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .back-to-top {
        bottom: 15px;
        left: 15px;
    }
    
    .whatsapp-float a,
    .back-to-top a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Página de Tratamientos */
.page-header {
    background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    color: white;
    margin-bottom: 15px;
    font-size: 2.8rem;
}

.page-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Categorías de Tratamientos */
.treatment-categories {
    padding-bottom: 80px;
}

.categories-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.category-btn {
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.category-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.category-btn.active {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
}

/* Tarjetas de tratamiento con precio */
.treatment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* CTA de tratamientos */
.treatment-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/imagen estetica.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    margin: 50px 0 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.treatment-cta .btn-primary {
    margin-top: 10px;
}

/* Estilos Responsive para Tratamientos */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 50px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .categories-nav {
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .category-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 90px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .categories-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .treatment-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .treatment-footer .btn-outline {
        width: 100%;
        text-align: center;
    }
} 