/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    background-color: #0A0A0A;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.text-hero {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
}

.text-h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.text-h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.text-h3 {
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.3;
}

.text-body-large {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
}

.text-body {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

.text-small {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
}

.font-display {
    font-family: 'Poppins', sans-serif;
}

.font-primary {
    font-family: 'Inter', sans-serif;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: #FFFFFF;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #CCCCCC;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #00BCD4;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00BCD4;
    transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #FFFFFF;
    margin: 2px 0;
    transition: 0.3s;
}

/* Buttons */
.btn-reservar,
.btn-primary,
.btn-secondary,
.btn-whatsapp,
.btn-maps {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
    text-align: center;
}

.btn-reservar {
    background: #00BCD4;
    color: #000000;
    box-shadow: 0 2px 8px rgba(0, 188, 212, 0.3);
}

.btn-reservar:hover {
    background: #00A3C4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.4);
}

.btn-primary {
    background: #00BCD4;
    color: #000000;
    box-shadow: 0 2px 8px rgba(0, 188, 212, 0.3);
}

.btn-primary:hover {
    background: #00A3C4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    border-color: #00BCD4;
    color: #00BCD4;
    background: rgba(26, 26, 26, 0.8);
}

.btn-clinica {
    background: #00BCD4;
    color: #000000;
    box-shadow: 0 2px 8px rgba(0, 188, 212, 0.3);
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
    text-align: center;
}

.btn-clinica:hover {
    background: #00A3C4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.4);
}

.btn-whatsapp {
    background: #00BCD4;
    color: #000000;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 188, 212, 0.3);
}

.btn-whatsapp:hover {
    background: #00A3C4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.4);
}

.btn-whatsapp-small {
    background: #00BCD4;
    color: #000000;
    width: 100%;
    margin: 0 auto;
    display: block;
    box-shadow: 0 2px 8px rgba(0, 188, 212, 0.3);
    font-size: 1rem;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
    text-align: center;
}

.btn-whatsapp-small:hover {
    background: #00A3C4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.4);
}

.btn-maps {
    background: #00BCD4;
    color: #000000;
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-maps:hover {
    background: #00A3C4;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0A0A0A 0%, #121212 50%, #0A0A0A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 188, 212, 0.05) 50%, transparent 70%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 1024px;
    margin: 0 auto;
    padding: 100px 24px 0 24px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 4rem;
    font-weight: 800;
    color: #00BCD4;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: #AAAAAA;
    margin-bottom: 32px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.highlight {
    color: #00BCD4;
    font-weight: 600;
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.stars {
    font-size: 1.5rem;
}

.rating-text {
    color: #AAAAAA;
    font-size: 0.875rem;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #AAAAAA;
    font-size: 0.875rem;
}

.location-icon {
    font-size: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid #00BCD4;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00BCD4;
    font-size: 12px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Stats Section */
.stats-section {
    padding: 64px 0;
    background: #121212;
}

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

.stat-card {
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.25s ease;
}

.stat-card:hover {
    background: #212121;
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00BCD4;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #AAAAAA;
}

/* Sections */
.section {
    padding: 96px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 24px;
}

.section-description {
    font-size: 1.25rem;
    color: #AAAAAA;
    text-align: center;
    max-width: 768px;
    margin: 0 auto 64px;
    line-height: 1.6;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #AAAAAA;
    text-align: center;
    margin-bottom: 48px;
}

.subsection-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 24px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-description p {
    margin-bottom: 24px;
    color: #AAAAAA;
    line-height: 1.7;
}

.team-brief {
    margin-top: 32px;
}

.team-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.team-bullet {
    width: 8px;
    height: 8px;
    background: #00BCD4;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.team-role {
    font-weight: 600;
    color: #00BCD4;
    margin-bottom: 4px;
}

.team-description {
    color: #AAAAAA;
    font-size: 0.875rem;
}

.features-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 32px;
}

.features-grid {
    display: grid;
    gap: 32px;
}

.feature-card {
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.25s ease;
}

.feature-card:hover {
    background: #212121;
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    color: #00BCD4;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.feature-description {
    color: #AAAAAA;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.team-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 20%;
    width: 25%;
    height: 25%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.team-text {
    text-align: left;
}

.team-cards {
    display: grid;
    gap: 24px;
    margin: 32px 0;
}

.team-card {
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.25s ease;
}

.team-card:hover {
    background: #212121;
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.team-card-icon {
    background: rgba(0, 188, 212, 0.2);
    border-radius: 8px;
    padding: 12px;
    display: inline-flex;
    margin-bottom: 16px;
    color: #00BCD4;
}

.team-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.team-card-description {
    color: #AAAAAA;
    font-size: 0.875rem;
    line-height: 1.6;
}

.team-cta {
    margin-top: 32px;
    text-align: center;
}

.cta-text {
    color: #AAAAAA;
    margin-bottom: 24px;
}

.cta-message {
    color: #00BCD4;
    font-weight: 600;
    margin-top: 16px;
}

.team-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-visual-container {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, rgba(26, 26, 26, 0.5) 100%);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.team-visual-icon {
    color: #00BCD4;
    margin-bottom: 24px;
}

.team-visual-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.team-visual-description {
    color: #AAAAAA;
    line-height: 1.6;
}

.team-visual-bg-1 {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    background: rgba(0, 188, 212, 0.2);
    border-radius: 50%;
    filter: blur(24px);
    z-index: 1;
}

.team-visual-bg-2 {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 64px;
    height: 64px;
    background: rgba(0, 188, 212, 0.2);
    border-radius: 50%;
    filter: blur(16px);
    z-index: 1;
}

/* Services Section */
.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.services-grid-second {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.25s ease;
    cursor: pointer;
}

.service-card:hover {
    background: #212121;
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.service-icon {
    color: #00BCD4;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.service-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.service-description {
    color: #AAAAAA;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    text-align: left;
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #AAAAAA;
    font-size: 0.875rem;
}

.feature-bullet {
    width: 6px;
    height: 6px;
    background: #00BCD4;
    border-radius: 50%;
    flex-shrink: 0;
}

.section-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, #0A0A0A 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 30%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 10;
}

.testimonials-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.star {
    color: #00BCD4;
}

.rating-stats {
    color: #FFFFFF;
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
    z-index: 10;
}

.testimonial-card {
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.25s ease;
}

.testimonial-card:hover {
    background: #212121;
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.testimonial-name {
    font-weight: 600;
    color: #FFFFFF;
}

.testimonial-time {
    color: #AAAAAA;
    font-size: 0.875rem;
}

.testimonial-text {
    color: #AAAAAA;
    line-height: 1.6;
}

.testimonials-cta {
    text-align: center;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.cta-description {
    color: #AAAAAA;
    margin-bottom: 24px;
}

/* Contact Section */
.contact-section {
    background: #0A0A0A;
}

.contact-header {
    text-align: center;
    margin-bottom: 48px;
}

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

.contact-form {
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.form-description {
    color: #AAAAAA;
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: #212121;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00BCD4;
    box-shadow: 0 0 0 2px rgba(0, 188, 212, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: #AAAAAA;
    font-size: 0.875rem;
}

.checkbox-label input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: #00BCD4;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.25s ease;
}

.info-item:hover {
    background: #212121;
    border-color: rgba(255, 255, 255, 0.15);
}

.info-icon {
    color: #00BCD4;
    margin-top: 4px;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-label {
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.info-value {
    color: #AAAAAA;
}

.info-value a {
    color: #AAAAAA;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-value a:hover {
    color: #00BCD4;
}

.location-section {
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
}

.location-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.location-map {
    cursor: pointer;
}

.map-placeholder {
    text-align: center;
    padding: 48px 24px;
}

.map-placeholder .map-pin-icon {
    color: #00BCD4;
    margin-bottom: 16px;
}

.map-location {
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.map-description {
    color: #AAAAAA;
    margin-bottom: 24px;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h4 {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-logo-img {
    width: 120px;
    height: auto;
    margin-bottom: 16px;
}

.footer-description {
    color: #AAAAAA;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 400px;
}

.footer-stats {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-dots {
    display: flex;
    gap: 4px;
}

.rating-dots .dot {
    width: 16px;
    height: 16px;
    background: #00BCD4;
    border-radius: 50%;
}

.footer-links {
    list-style: none;
}

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

.footer-links button {
    background: none;
    border: none;
    color: #AAAAAA;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
    font-size: 0.875rem;
}

.footer-links button:hover {
    color: #00BCD4;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    color: #00BCD4;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.75rem;
    color: #666666;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 0.875rem;
    color: #AAAAAA;
}

.contact-value a {
    color: #AAAAAA;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-value a:hover {
    color: #00BCD4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    color: #666666;
    font-size: 0.875rem;
}

.credits {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666666;
    font-size: 0.875rem;
}

.credits .heart-icon {
    color: #FF6B6B;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .about-content,
    .team-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .services-grid,
    .services-grid-second {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section {
        padding: 64px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .text-hero {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .services-grid,
    .services-grid-second {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title,
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-title {
        margin-top: 60px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }
    
    .section-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-reservar,
    .btn-primary,
    .btn-secondary,
    .btn-clinica {
        width: 100%;
        max-width: 300px;
    }
    
    .btn-whatsapp-small {
        width: 80%;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    .highlight {
        background: linear-gradient(120deg, #00BCD4 0%, #00A3C4 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 600;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-4 {
    gap: 16px;
}

.gap-8 {
    gap: 32px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-8 {
    margin-bottom: 32px;
}

.mt-4 {
    margin-top: 16px;
}

.mt-8 {
    margin-top: 32px;
}

.p-4 {
    padding: 16px;
}

.p-8 {
    padding: 32px;
}

.rounded {
    border-radius: 8px;
}

.shadow {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Focus and Accessibility */
*:focus {
    outline: 2px solid #00BCD4;
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid #00BCD4;
    outline-offset: 2px;
}

/* Radio Button Styles */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.radio-button-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    max-width: 100%;
}

.radio-input {
    margin: 4px 0 0 0;
    width: 18px;
    height: 18px;
    min-width: 18px;
    max-width: 18px;
    accent-color: #00BCD4;
    cursor: pointer;
    flex-shrink: 0;
}

.radio-label {
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
    color: #D1D5DB;
    word-wrap: break-word;
    word-break: break-word;
    flex: 1;
    margin: 0;
    padding: 0;
    max-width: calc(100% - 30px);
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .scroll-indicator,
    .btn-primary,
    .btn-secondary,
    .btn-whatsapp {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* Address Clickable */
.info-value {
    cursor: pointer;
    transition: color 0.2s ease;
}

.info-value:hover {
    color: #00BCD4;
}

/* Service Prices */
.service-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00BCD4;
    margin-bottom: 8px;
    background: rgba(0, 188, 212, 0.1);
    padding: 4px 12px;
    border-radius: 6px;
    display: inline-block;
}

/* Gallery Section */
.gallery-section {
    background: #0A0A0A;
    padding: 120px 0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 80px;
}

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

.gallery-item {
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-4px);
    border-color: #00BCD4;
    box-shadow: 0 8px 32px rgba(0, 188, 212, 0.2);
}

.gallery-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00BCD4;
}

.gallery-info {
    padding: 24px;
}

.gallery-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.gallery-category {
    font-size: 0.8rem;
    color: #00BCD4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.gallery-description {
    color: #AAAAAA;
    font-size: 0.9rem;
    line-height: 1.5;
}

.gallery-actions {
    text-align: center;
}

.gallery-note {
    color: #AAAAAA;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.gallery-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-buttons .btn-primary,
.gallery-buttons .btn-secondary {
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* Urgencia Elements */
.urgency-banner {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    padding: 16px;
    text-align: center;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.offer-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #FF6B6B;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

/* Stats Display */
.stats-counter {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00BCD4;
    display: inline-block;
}
    text-decoration: underline;
}