/* ===================================
   LEGAL THEME - TriLex Partners
   Tema profesional para servicios legales y contables
   =================================== */

:root {
    /* Colores Legal/Contable */
    --color-navy: #0F172A;
    --color-navy-light: #1E293B;
    --color-navy-dark: #020617;
    --color-gold: #D4AF37;
    --color-gold-light: #E8C468;
    --color-gold-dark: #B8941F;
    --color-silver: #C0C0C0;
    --color-charcoal: #334155;
    
    /* Gradientes Legal */
    --gradient-legal: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
    --gradient-gold: linear-gradient(135deg, #B8941F 0%, #D4AF37 50%, #E8C468 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.90) 100%);
    
    /* Sombras doradas */
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.3);
    --shadow-gold-lg: 0 20px 50px rgba(212, 175, 55, 0.4);
}

/* ===================================
   HEADER PREMIUM
   =================================== */

.header-premium {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: 0 2px 20px rgba(15, 23, 42, 0.1);
}

.navbar-premium {
    padding: 1rem 0;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo-premium {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-premium:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-menu-premium {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--color-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-gold);
}

.nav-link.active::after {
    width: 100%;
}

.btn-nav-cta {
    background: var(--gradient-gold);
    color: var(--color-navy);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: var(--gradient-gold);
    border: none;
    color: var(--color-navy);
    padding: 0.75rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--color-navy);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===================================
   FOOTER PREMIUM
   =================================== */

.footer-premium {
    position: relative;
    background: var(--color-navy);
    color: var(--color-white);
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    fill: var(--color-white);
}

.footer-premium .container {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col-brand {
    grid-column: span 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.footer-col-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-links-list,
.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: var(--color-gold);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-credits {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.developer-link-footer {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.developer-link-footer:hover {
    color: var(--color-gold-light);
}

/* ===================================
   RESPONSIVE HEADER & FOOTER
   =================================== */

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu-premium {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 0;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-menu-premium.active {
        left: 0;
    }
    
    .nav-menu-premium li {
        width: 100%;
        border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem 0;
    }
    
    .btn-nav-cta {
        width: calc(100% - 2rem);
        text-align: center;
        margin: 1.5rem 1rem;
        padding: 1rem 1.5rem;
        display: block;
        border-radius: 50px;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-col-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 50px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-col-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-main {
        min-height: 100vh;
    }
    
    .hero-bg {
        height: 100%;
        width: 100%;
    }
    
    .hero-image {
        object-fit: contain;
        object-position: center top;
        height: 100%;
        width: 100%;
    }
    
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
    }
    
    .hero-content-main {
        padding: 2rem 1rem;
        margin-top: auto;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .hero-title-main {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar-premium {
        padding: 0.75rem 0;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .hero-badges {
        gap: 1rem;
    }
    
    .hero-badge {
        min-width: 120px;
        padding: 1rem;
    }
}

/* Hero Main con Imagen */
.hero-main {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    backdrop-filter: blur(2px);
}

.hero-content-main {
    position: relative;
    z-index: 2;
    padding: 4rem 1rem;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title-main {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--color-white);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.text-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle-main {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    text-align: center;
    min-width: 150px;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.badge-text {
    display: block;
    font-size: 0.9rem;
    color: var(--color-white);
    font-weight: 500;
}

.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Sección Profesionales */
.professionals-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.professionals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.professional-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.professional-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-gold-lg);
    border-color: var(--color-gold);
}

.professional-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: var(--gradient-legal);
}

.professional-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.professional-card:hover .professional-image {
    transform: scale(1.05);
}

.professional-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.professional-card:hover .professional-overlay {
    opacity: 1;
}

.professional-whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.professional-card:hover .professional-whatsapp-btn {
    transform: translateY(0);
}

.professional-whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.professional-info {
    padding: 2rem;
}

.professional-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.professional-title {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.professional-specialty {
    color: var(--color-charcoal);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.professional-experience {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.view-services-btn {
    width: 100%;
}

/* Acordeón de Servicios */
.services-accordion-section {
    padding: 6rem 0;
    background: var(--color-navy);
    color: var(--color-white);
}

.services-accordion {
    max-width: 900px;
    margin: 3rem auto 0;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.accordion-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-gold);
}

.accordion-title {
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-align: left;
}

.accordion-subtitle {
    color: var(--color-gold);
    font-size: 0.9rem;
    text-align: left;
}

.accordion-icon {
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 2rem;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    padding: 0 2rem 2rem;
}

.professional-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.services-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-item-small {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-white);
    font-size: 0.95rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--color-gold);
}

.service-item-small svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.accordion-cta {
    text-align: center;
}

/* Sección Por qué elegirnos */
.why-choose-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.benefits-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.benefit-card-premium {
    background: var(--color-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.benefit-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold-lg);
    border-color: var(--color-gold);
}

.benefit-icon-premium {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 20px;
    color: var(--color-white);
    transition: transform 0.3s ease;
}

.benefit-card-premium:hover .benefit-icon-premium {
    transform: scale(1.1) rotate(5deg);
}

.benefit-title-premium {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.benefit-text-premium {
    color: var(--color-charcoal);
    line-height: 1.6;
}

/* Formularios de Consulta */
.consultation-forms-section {
    padding: 6rem 0;
    background: var(--gradient-legal);
}

.consultation-forms-section .section-title,
.consultation-forms-section .section-subtitle {
    color: var(--color-white);
}

.forms-tabs {
    max-width: 900px;
    margin: 3rem auto 0;
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.tabs-nav {
    display: flex;
    background: var(--color-navy-light);
    border-bottom: 3px solid var(--color-gold);
}

.tab-btn {
    flex: 1;
    padding: 1.5rem 1rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn:last-child {
    border-right: none;
}

.tab-btn img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.tab-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
}

.tab-btn.active {
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
}

.tab-btn.active img {
    border-color: var(--color-gold);
}

.tabs-content {
    padding: 3rem;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-header-pro {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--color-gold);
}

.form-pro-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.form-header-pro h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.25rem;
}

.form-header-pro p {
    color: var(--color-gold);
    font-weight: 600;
}

.consultation-form-pro .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Testimonios */
.testimonials-section-new {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.testimonials-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial-card-new {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card-new::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 6rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-card-new:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold-lg);
    border-color: var(--color-gold);
}

.stars-rating {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--color-gold);
}

.testimonial-text-new {
    color: var(--color-charcoal);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author-new {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    padding-top: 1.5rem;
}

.testimonial-author-new strong {
    color: var(--color-navy);
    font-size: 1.1rem;
}

.testimonial-author-new span {
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 600;
}

/* CTA Final */
.cta-final {
    padding: 6rem 0;
    background: var(--gradient-legal);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.cta-content-final {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title-final {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.cta-text-final {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons-final {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary-outline {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-secondary-outline:hover {
    background: var(--color-gold);
    color: var(--color-navy);
}

/* WhatsApp Multi Float */
.whatsapp-multi-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-main-btn {
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-main-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-options {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 1rem;
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: var(--shadow-2xl);
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 280px;
}

.whatsapp-options.show {
    display: flex;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid transparent;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-option:hover {
    border-color: #25D366;
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
}

.whatsapp-option-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-gold);
}

.whatsapp-option-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.whatsapp-option-name {
    font-weight: 700;
    color: var(--color-navy);
    font-size: 1rem;
}

.whatsapp-option-title {
    font-size: 0.85rem;
    color: var(--color-charcoal);
}

/* Botones Gold Theme */
.btn-primary {
    background: var(--gradient-gold);
    border: none;
    color: var(--color-navy);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--color-gold-dark);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

/* Section Headers */
.section-header.text-center {
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.services-accordion-section .section-title,
.consultation-forms-section .section-title {
    color: var(--color-white);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-charcoal);
    max-width: 700px;
    margin: 0 auto;
}

.services-accordion-section .section-subtitle,
.consultation-forms-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer Developer Credit */
.developer-link {
    color: var(--color-gold);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.developer-link:hover {
    color: var(--color-gold-light);
    text-decoration: underline;
}

/* ===================================
   PÁGINAS INTERNAS - HERO PAGE
   =================================== */

.hero-page {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-legal);
    margin-top: 80px;
    overflow: hidden;
}

.hero-overlay-page {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.85) 100%);
}

.hero-page-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 1rem;
}

.hero-page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-page-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--color-gold-light);
}

/* ===================================
   PÁGINA NOSOTROS
   =================================== */

.about-intro-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
    color: var(--color-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--color-navy);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #F8FAFC;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    background: var(--color-white);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
    transform: translateX(5px);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 12px;
    color: var(--color-navy);
}

.about-feature-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.25rem;
}

.about-feature-item p {
    font-size: 0.95rem;
    color: var(--color-charcoal);
    margin: 0;
}

.about-intro-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
}

.about-main-image {
    width: 100%;
    height: auto;
    display: block;
}

.about-stats-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-charcoal);
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    background: var(--color-charcoal);
    opacity: 0.2;
}

/* Sección Valores */
.values-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #F8FAFC 0%, #ffffff 100%);
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-charcoal);
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
    border-radius: 20px;
    color: var(--color-gold);
}

.value-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.value-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-charcoal);
}

/* Sección Misión y Visión */
.mission-vision-section {
    padding: 6rem 0;
    background: var(--color-navy);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-vision-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-vision-card:hover {
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.mv-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    color: var(--color-navy);
}

.mv-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.mv-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   PÁGINA SERVICIOS
   =================================== */

.services-intro-section {
    padding: 4rem 0 2rem;
    background: var(--color-white);
}

.professional-services-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #F8FAFC 100%);
}

.professional-services-section:nth-child(odd) {
    background: linear-gradient(180deg, #F8FAFC 0%, #ffffff 100%);
}

.prof-services-header {
    margin-bottom: 3rem;
}

.prof-info-inline {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
}

.prof-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-gold);
}

.prof-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-navy);
    margin-bottom: 0.25rem;
}

.prof-title-inline {
    font-size: 1rem;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.prof-specialty-inline {
    font-size: 0.95rem;
    color: var(--color-charcoal);
    margin: 0;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-detail-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.service-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 10px;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.service-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.service-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-card-link:hover {
    gap: 0.75rem;
}

.prof-cta-box {
    text-align: center;
    padding: 3rem;
    background: var(--color-navy);
    border-radius: 16px;
}

.prof-cta-text {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.why-choose-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-card {
    position: relative;
    padding: 2.5rem;
    background: #F8FAFC;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.why-card:hover {
    background: var(--color-white);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
    transform: translateY(-5px);
}

.why-number {
    position: absolute;
    top: -1rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-navy);
}

.why-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.why-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-charcoal);
}

/* ===================================
   PÁGINA PROFESIONALES
   =================================== */

.team-intro-section {
    padding: 4rem 0 2rem;
    background: var(--color-white);
}

.professional-profile-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #F8FAFC 100%);
}

.professional-profile-section:nth-child(odd) {
    background: linear-gradient(180deg, #F8FAFC 0%, #ffffff 100%);
}

.prof-profile-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.prof-image-wrapper-large {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
}

.prof-image-large {
    width: 100%;
    height: auto;
    display: block;
}

.prof-badge-float {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-navy);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.prof-badge-float svg {
    color: var(--color-gold);
}

.prof-name-large {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.prof-title-large {
    font-size: 1.3rem;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.prof-specialty-large {
    font-size: 1.1rem;
    color: var(--color-charcoal);
    margin-bottom: 2rem;
}

.prof-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prof-section-title::before {
    content: '';
    width: 4px;
    height: 30px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.prof-description {
    margin-bottom: 2rem;
}

.prof-description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-charcoal);
}

.prof-credentials {
    margin-bottom: 2rem;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #F8FAFC;
    border-radius: 8px;
}

.credential-item svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.prof-services-compact {
    margin-bottom: 2rem;
}

.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.service-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
    color: var(--color-gold);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--color-gold);
    transition: all 0.3s ease;
}

.service-tag:hover {
    background: var(--gradient-gold);
    color: var(--color-navy);
}

.prof-contact-box {
    padding: 2rem;
    background: #F8FAFC;
    border-radius: 16px;
    border: 2px solid var(--color-gold);
}

.contact-methods {
    display: flex;
    gap: 1rem;
}

.contact-method-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background: #25D366;
    color: var(--color-white);
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.phone-btn {
    background: var(--color-gold);
    color: var(--color-navy);
}

.phone-btn:hover {
    background: #c29d2f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.team-stats-section {
    padding: 6rem 0;
    background: var(--color-navy);
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card-large {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-card-large:hover {
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.stat-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    color: var(--color-navy);
}

.stat-number-large {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-large {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* ===================================
   PÁGINA CONTACTO
   =================================== */

.contact-info-section {
    padding: 4rem 0;
    background: var(--color-white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-info-card {
    text-align: center;
    padding: 3rem 2rem;
    background: #F8FAFC;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: var(--color-white);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    transform: translateY(-5px);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    color: var(--color-navy);
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.contact-info-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

.contact-info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.contact-info-link:hover {
    gap: 0.75rem;
}

.contact-forms-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #F8FAFC 0%, #ffffff 100%);
}

.contact-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contact-tab-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--color-white);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 250px;
}

.contact-tab-btn:hover {
    border-color: var(--color-gold);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.1);
}

.contact-tab-btn.active {
    border-color: var(--color-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.tab-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-gold);
}

.tab-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
}

.tab-title {
    display: block;
    font-size: 0.85rem;
    color: var(--color-charcoal);
}

.contact-tab-panel {
    display: none;
}

.contact-tab-panel.active {
    display: block;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.professional-info-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
}

.prof-contact-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-gold);
}

.prof-contact-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-navy);
    margin-bottom: 0.25rem;
}

.prof-contact-title {
    font-size: 1rem;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.prof-contact-specialty {
    font-size: 0.95rem;
    color: var(--color-charcoal);
    margin: 0;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.btn-full {
    width: 100%;
}

.map-section {
    padding: 4rem 0;
    background: var(--color-white);
}

.map-embed-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-header {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--color-navy) 0%, #1e293b 100%);
    text-align: center;
    color: white;
}

.map-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    color: var(--color-navy);
}

.map-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0;
}

.map-iframe-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    background: #f1f5f9;
}

.map-iframe-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.map-footer {
    padding: 2rem;
    text-align: center;
    background: white;
    border-top: 3px solid var(--color-gold);
}

.map-footer .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* CTA Section Alternative */
.cta-section-alt {
    padding: 6rem 0;
    background: var(--color-navy);
}

.cta-content-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-lg,
.btn-secondary-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-lg {
    background: var(--gradient-gold);
    color: var(--color-navy);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-primary-lg:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-secondary-lg {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary-lg:hover {
    background: var(--color-white);
    color: var(--color-navy);
    transform: translateY(-2px);
}

/* Direct Contact Grid */
.direct-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.direct-contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.direct-contact-card:hover {
    transform: translateY(-5px);
}

.direct-contact-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--color-gold);
}

.direct-contact-card h4 {
    font-size: 1.3rem;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.direct-contact-card p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.direct-contact-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact.whatsapp {
    background: #25D366;
    color: white;
}

.btn-contact.whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.btn-contact.phone {
    background: var(--color-gold);
    color: var(--color-navy);
}

.btn-contact.phone:hover {
    background: #c29d2f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-badges {
        gap: 1rem;
    }
    
    .hero-badge {
        min-width: 120px;
        padding: 1rem 1.5rem;
    }
    
    .badge-number {
        font-size: 2rem;
    }
    
    .professionals-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tabs-nav {
        flex-direction: column;
    }
    
    .tab-btn {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .tabs-content {
        padding: 2rem 1.5rem;
    }
    
    .whatsapp-multi-float {
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-main-btn {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
    
    .whatsapp-main-btn span {
        display: none;
    }
    
    /* Responsive Páginas Internas */
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-intro-image {
        order: -1;
    }
    
    .about-stats-card {
        position: static;
        margin-top: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .prof-profile-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-header {
        padding: 2rem 1rem;
    }
    
    .map-title {
        font-size: 1.1rem;
    }
    
    .map-iframe-wrapper {
        height: 350px;
    }
    
    .map-footer {
        padding: 1.5rem 1rem;
    }
    
    .map-footer .btn {
        width: 100%;
        justify-content: center;
    }
    
    .prof-info-inline {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid-detailed {
        grid-template-columns: 1fr;
    }
    
    .contact-tab-btn {
        min-width: auto;
        width: 100%;
    }
    
    .contact-methods {
        flex-direction: column;
    }
    
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary-lg,
    .btn-secondary-lg {
        width: 100%;
    }
    
    .direct-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .direct-contact-buttons {
        flex-direction: column;
    }
    
    .btn-contact {
        width: 100%;
        justify-content: center;
    }
}
