/* VARIABLES & THEME */
:root {
    --primary: #1BA098;
    --primary-light: #E6F4F3;
    --white: #FFFFFF;
    --dark: #1A1A1A;
    --gray: #6B6B6B;
    --light-gray: #E0E0E0;

    --font-heading: Tahoma, Geneva, Verdana, sans-serif;
    --font-body: Tahoma, Geneva, Verdana, sans-serif;

    --shadow-default: 0 4px 24px rgba(0, 0, 0, 0.07);
    --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.12);
    --radius: 8px;

    --transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    color: #151515;
    font-weight: 500;
    line-height: 1.7;
    background-color: var(--white);
    background-image: linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.84)), url('./assets/justica.jpg');
    background-repeat: repeat;
    background-size: 160px 160px;
    background-attachment: fixed;
    overflow-x: hidden;
    width: 100%;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Tahoma, Geneva, Verdana, sans-serif !important;
    color: var(--dark);
    font-weight: 700;
}

h1.hero-title {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 24px;
}

h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.overline {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 16px;
}

.subtitle {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 40px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
}

/* LAYOUT & UTILITIES */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light-teal {
    background-color: var(--primary-light);
}

.center {
    text-align: center;
}

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

ul {
    list-style: none;
}

.divider {
    height: 1px;
    background-color: var(--light-gray);
    width: 100%;
    margin: 16px 0;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
    gap: 12px;
}

.btn:hover {
    transform: scale(1.02);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary,
.header .btn,
#site-header button {
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
}

.btn-primary:hover {
    box-shadow: 0 8px 16px rgba(27, 160, 152, 0.2);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

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

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 6px;
}

/* ANIMATIONS (Initial state for Intersection Observer) */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1BA098 !important;
    z-index: 1000;
    transition: box-shadow 0.3s ease, padding 0.3s ease;
    padding: 16px 0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

.site-header.scrolled {
    background-color: #1BA098 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 12px 0;
}

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

.header-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .header-logo-img {
        height: 42px;
    }
}

.footer-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 12px;
}

.main-nav {
    display: none;
    /* Mobile first, hidden by default */
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    transition: var(--transition);
}

.hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.menu-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--white);
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--white);
}

/* MOBILE NAV OVERLAY */
.main-nav.mobile-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary);
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.main-nav.mobile-active .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.main-nav.mobile-active .nav-link {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
}

.main-nav.mobile-active .btn-agendar {
    background-color: var(--white);
    color: var(--primary);
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 120px 5%;
    background: transparent;
    min-height: auto;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./assets/foto_1_Sc_adv.JPG');
    background-size: cover;
    background-position: center 20%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: 0.28;
    z-index: 1;
    pointer-events: none;
}

/* Overlay gradient for text protection */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.88) 40%,
            rgba(255, 255, 255, 0.85) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero>* {
    position: relative;
    z-index: 3;
}

@media (max-width: 768px) {
    .hero__background {
        background-attachment: scroll;
        background-size: cover;
        opacity: 0.22;
    }
}

.hero-visual {
    position: relative;
    height: 420px;
    margin-top: 40px;
    background-image: url('./assets/foto_1_Sc_adv.JPG');
    background-size: 130%;
    background-position: center 40%;
    background-repeat: no-repeat;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(27, 160, 152, 0.15);
    z-index: 3;
    filter: brightness(0.35) contrast(0.9);
}

.hero-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(10, 10, 10, 0.62) 0%,
            rgba(10, 10, 10, 0.58) 100%);
    border-radius: 12px;
    z-index: 1;
    pointer-events: none;
}

.hero-visual svg {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
}

.hero-visual-bg {
    display: none;
}

.scale-svg {
    width: 100%;
    height: 100%;
    max-width: 280px;
    display: block;
    margin: 0 auto;
}

.hero-dots {
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--primary-light) 2px, transparent 2px);
    background-size: 16px 16px;
    z-index: -1;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    color: var(--gray);
}

.trust-icon {
    color: var(--primary);
    font-weight: bold;
    margin-right: 4px;
}

/* ABOUT SECTION */
.about-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.about-quote-box {
    border-left: 4px solid var(--primary);
    padding-left: 24px;
    margin-bottom: 24px;
}

.about-quote {
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    font-size: 24px;
    font-style: italic;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.4;
}

.about-description {
    color: #4D4D4D;
    font-weight: 600;
    line-height: 1.75;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    background-color: var(--primary);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.stat-icon {
    margin-top: 4px;
}

.stat-content h3 {
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    color: var(--white);
}

.stat-content p {
    font-size: 14px;
    opacity: 0.9;
}

/* AREAS SECTION */
.areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.area-card {
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 32px 24px;
    box-shadow: var(--shadow-default);
    transition: var(--transition);
    position: relative;
    border-top: 3px solid transparent;
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--primary);
}

.area-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

/* TEAM SECTION */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.team-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow-default);
    text-align: center;
    transition: var(--transition);
    border-top: 3px solid var(--primary);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.team-name {
    margin-bottom: 4px;
}

.team-oab {
    display: block;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 16px;
}

.team-role {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
}

.team-bio {
    font-size: 14px;
    color: var(--gray);
}

/* CONTACT SECTION */
.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.info-card {
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    font-size: 24px;
}

.info-label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.info-value {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.5;
}

.map-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
}

.map-label {
    margin-bottom: 0;
}

.btn-whatsapp-large {
    width: 100%;
}

.icon-whatsapp {
    margin-right: -4px;
}

/* FORM */
.contact-form-wrapper {
    background-color: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-default);
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    color: var(--dark);
    background-color: var(--white);
    transition: border-color 0.2s ease;
}

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

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '▼';
    font-size: 10px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--gray);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

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

.form-title {
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-subtitle {
    color: var(--gray);
    font-size: 14px;
}

.btn-wpp-send {
    background-color: var(--primary);
    color: var(--white);
    width: 100%;
    border-radius: 12px;
    font-size: 14px;
    padding: 14px;
    text-align: center;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-wpp-send:hover {
    background-color: #24988B;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray);
    margin-top: 16px;
}

.form-success {
    display: none;
    margin-top: 20px;
    padding: 16px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    border: 1px solid var(--primary);
}

/* FOOTER */
.site-footer {
    background-color: var(--dark);
    color: var(--white);
}

.footer-container {
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 16px;
    display: block;
    border-radius: 4px;
}

.footer-tagline,
.copyright {
    color: #A0A0A0;
    font-size: 14px;
    margin-bottom: 16px;
}

.footer-title {
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #A0A0A0;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact-text {
    color: #A0A0A0;
    font-size: 14px;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary);
}

.social-icon:hover {
    background-color: var(--primary);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(27, 160, 152, 0.3);
    padding: 24px 0;
    text-align: center;
    font-size: 12px;
    color: #A0A0A0;
}

/* FLOATING ELEMENTS */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(27, 160, 152, 0.4);
    z-index: 999;
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
}

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

.back-to-top {
    position: fixed;
    bottom: 96px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--dark);
    color: var(--white);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary);
    transform: translateY(-4px);
}

/* KEYFRAMES */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(27, 160, 152, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(27, 160, 152, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(27, 160, 152, 0);
    }
}

/* MEDIA QUERIES (TABLET & DESKTOP) */
@media (min-width: 768px) {
    h1.hero-title {
        font-size: 48px;
    }

    .hero-actions {
        flex-direction: row;
    }

    .trust-indicators {
        flex-direction: row;
        gap: 24px;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-container {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    h1.hero-title {
        font-size: 64px;
    }

    /* Reveal Desktop Nav */
    .menu-toggle {
        display: none;
    }

    .main-nav,
    .main-nav.mobile-active {
        display: flex;
        flex-direction: row;
        position: static;
        height: auto;
        background-color: transparent;
        align-items: center;
        gap: 32px;
    }

    .main-nav .nav-links {
        display: flex;
        flex-direction: row;
        gap: 24px;
        align-items: center;
    }

    .main-nav .nav-link {
        color: var(--dark);
        position: relative;
        font-family: Tahoma, Geneva, Verdana, sans-serif;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.03em;
    }

    .main-nav .nav-link:hover,
    .main-nav .nav-link.active {
        color: var(--primary);
    }

    .main-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary);
        transition: width 0.3s ease;
    }

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

    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding-top: 80px;
    }

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

    .hero-content {
        width: 55%;
        margin-right: 5%;
    }

    .hero-visual {
        width: 40%;
        margin-top: 0;
        height: 400px;
    }

    .about-container {
        flex-direction: row;
        align-items: stretch;
    }

    .about-text {
        width: 50%;
        padding-right: 48px;
        border-right: 1px solid var(--light-gray);
    }

    .about-stats {
        width: 50%;
        padding-left: 48px;
        justify-content: space-between;
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ════════════════════════════════════════
   VIRTUAL TOUR SECTION
════════════════════════════════════════ */

/* Section wrapper */
.office-tour {
    padding: 72px 0 64px;
    background: transparent;
}

/* Header */
.vt-header {
    text-align: center;
    padding: 0 24px 40px;
    max-width: 600px;
    margin: 0 auto;
}

.vt-title {
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 12px;
}

.vt-subtitle {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
}

/* Stage — the viewport */
.vt-stage {
    position: relative;
    width: 88%;
    max-width: 860px;
    margin: 0 auto;
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: unset;
    max-height: unset;
    overflow: hidden;
    background: #0a0a0a;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    user-select: none;
}

/* Track — holds all slides side by side */
.vt-track {
    display: flex;
    height: 100%;
    will-change: transform;
    transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Single slide */
.vt-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Photo */
.vt-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    pointer-events: none;
    transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
    background: #0a0a0a;
}

/* Subtle Ken Burns on active slide */
.vt-slide.is-active .vt-img {
    animation: kenBurns 8s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.04);
    }
}

/* Arrow buttons */
.vt-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.55);
    background: rgba(0, 0, 0, 0.28);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
    -webkit-backdrop-filter: blur(4px);
}

.vt-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.08);
}

.vt-arrow:active {
    transform: translateY(-50%) scale(0.96);
}

.vt-arrow--prev {
    left: 20px;
}

.vt-arrow--next {
    right: 20px;
}

/* Hide arrows when disabled */
.vt-arrow:disabled {
    opacity: 0.2;
    cursor: default;
    pointer-events: none;
}

/* Bottom bar — gradient + dots */
.vt-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.45));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 18px;
    z-index: 5;
}

/* Dots */
.vt-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.vt-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.3s ease,
        transform 0.3s ease,
        width 0.3s ease;
    flex-shrink: 0;
}

.vt-dot.is-active {
    background: var(--primary);
    transform: scale(1.3);
    width: 22px;
    border-radius: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .office-tour {
        padding: 56px 0 48px;
    }

    .vt-title {
        font-size: 26px;
    }

    .vt-stage {
        width: 94%;
        aspect-ratio: 4 / 3;
        height: auto;
        min-height: unset;
        max-height: unset;
    }

    .vt-arrow {
        width: 38px;
        height: 38px;
    }

    .vt-arrow svg {
        width: 18px;
        height: 18px;
    }

    .vt-arrow--prev {
        left: 8px;
    }

    .vt-arrow--next {
        right: 8px;
    }

    .vt-dot {
        width: 6px;
        height: 6px;
    }

    .vt-dot.is-active {
        width: 16px;
    }
}

@media (max-width: 480px) {
    .vt-header {
        padding: 0 20px 32px;
    }

    .vt-stage {
        width: 96%;
        aspect-ratio: 4 / 3;
        height: auto;
        min-height: unset;
    }
}

/* =========================================
   NEW CSS FROM TASKS 3, 4, 5, 6, 8, 9
   ========================================= */

/* Nav Links & Buttons */
.nav-link {
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9) !important;
    letter-spacing: 0.03em;
    padding: 8px 4px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff !important;
}

.btn-agendar {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
}

.btn-agendar:hover {
    background: rgba(255, 255, 255, 0.35) !important;
}

/* FIX 4 & 5: Hero Section */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex: 1;
    pointer-events: none;
}

.hero-logo-bg {
    width: 420px;
    max-width: 90%;
    height: auto;
    object-fit: contain;
    opacity: 1;
    display: block;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 1024px) {
    .hero-logo-bg {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .hero-logo-bg {
        width: 220px;
        margin: 24px auto 0;
    }
}

.hero-visual-bg,
.hero-dots,
.scale-svg {
    display: none !important;
}

.hero__background {
    display: none !important;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 48px;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

/* FIX 6: SIDE STRIPS */
.side-strip {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 52px;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    display: none;
}

@media (min-width: 1200px) {
    .side-strip {
        display: block;
    }

    body {
        padding-left: 52px;
        padding-right: 52px;
    }
}

.side-strip--left {
    left: 0;
}

.side-strip--right {
    right: 0;
}

.side-strip__track {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 6px;
    animation: sideScroll 25s linear infinite;
}

.side-strip--right .side-strip__track {
    animation-direction: reverse;
}

.side-strip__img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    opacity: 0.06;
    filter: grayscale(100%);
    flex-shrink: 0;
    border-radius: 4px;
}

@keyframes sideScroll {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

/* FIX 8: HIGHLIGHTED SECTIONS */
#areas,
.section-areas {
    background: #1BA098 !important;
}

#areas .section-title,
#areas h2,
#areas h3,
#areas .overline,
#areas p,
#areas span {
    color: #ffffff !important;
}

#areas .area-card,
#areas .card {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

#areas .area-card:hover,
#areas .card:hover {
    background: rgba(255, 255, 255, 0.22) !important;
}

#areas .area-card h3,
#areas .card h3,
#areas .area-card p,
#areas .card p {
    color: #ffffff !important;
}

#equipe,
.section-equipe {
    background: #0E7A72 !important;
}

#equipe .section-title,
#equipe h2,
#equipe h3,
#equipe .overline,
#equipe p,
#equipe span {
    color: #ffffff !important;
}

#equipe .team-card,
#equipe .card {
    background: rgba(255, 255, 255, 0.10) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
}

#equipe .team-name,
#equipe .team-oab,
#equipe .team-role,
#equipe .team-bio {
    color: #ffffff !important;
}

/* Team Photo Placeholder (kept from previous task) */
.team-photo-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.team-photo-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
}

.team-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* FIX 9: Footer Update */
.site-footer {
    background: #1BA098 !important;
    color: #ffffff;
    padding: 72px 0 32px !important;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
}

.site-footer h3,
.site-footer h4,
.site-footer .footer-title {
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
}

.site-footer a,
.site-footer p,
.site-footer li,
.site-footer span {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 14px;
    line-height: 1.8;
}

.site-footer a:hover {
    color: #ffffff !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    margin-top: 48px;
    padding-top: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6) !important;
    text-align: center;
}

/* ════════════════════════════════════════
   THUMBNAIL CAROUSEL
════════════════════════════════════════ */
.tc-header { text-align: center; padding: 0 24px 40px; max-width: 600px; margin: 0 auto; }
.tc-title { font-family: Tahoma, Geneva, Verdana, sans-serif; font-size: 32px; color: #1A1A1A; margin-bottom: 12px; }
.tc-subtitle { font-size: 16px; color: #6B6B6B; line-height: 1.7; font-family: Tahoma, Geneva, Verdana, sans-serif; }
.tc-wrapper { max-width: 900px; margin: 0 auto; padding: 0 16px 64px; display: flex; flex-direction: column; gap: 8px; }
.tc-stage { position: relative; width: 100%; border-radius: 12px; overflow: hidden; background: #f0f0f0; aspect-ratio: 16 / 10; cursor: grab; user-select: none; }
.tc-stage:active { cursor: grabbing; }
.tc-track { display: flex; height: 100%; will-change: transform; transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.tc-slide { flex: 0 0 100%; width: 100%; height: 100%; overflow: hidden; }
.tc-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; pointer-events: none; }
.tc-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: none; background: rgba(255,255,255,0.88); color: #1A1A1A; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; box-shadow: 0 2px 12px rgba(0,0,0,0.15); transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease; opacity: 0.75; }
.tc-arrow:hover { background: #ffffff; opacity: 1; transform: translateY(-50%) scale(1.08); }
.tc-arrow:disabled { opacity: 0.25; cursor: not-allowed; pointer-events: none; }
.tc-arrow--prev { left: 14px; }
.tc-arrow--next { right: 14px; }
.tc-counter { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,0.48); color: #ffffff; font-size: 13px; font-family: Tahoma, Geneva, Verdana, sans-serif; padding: 4px 14px; border-radius: 20px; letter-spacing: 0.06em; z-index: 10; white-space: nowrap; }
.tc-thumbs-wrapper { overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.tc-thumbs-wrapper::-webkit-scrollbar { display: none; }
.tc-thumbs { display: flex; gap: 3px; height: 72px; width: fit-content; padding-bottom: 4px; }
.tc-thumb { flex-shrink: 0; height: 100%; width: 35px; border-radius: 6px; overflow: hidden; border: none; padding: 0; cursor: pointer; background: #e0e0e0; transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), margin 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease; opacity: 0.55; position: relative; }
.tc-thumb.is-active { width: 120px; margin-left: 2px; margin-right: 2px; opacity: 1; }
.tc-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; pointer-events: none; }
.tc-thumb.is-active::after { content: ''; position: absolute; inset: 0; border-radius: 6px; border: 2px solid #1BA098; pointer-events: none; }
@media (max-width: 768px) { .tc-stage { aspect-ratio: 4 / 3; } .tc-title { font-size: 24px; } .tc-arrow { width: 36px; height: 36px; } .tc-arrow svg { width: 18px; height: 18px; } .tc-thumb, .tc-thumbs { height: 56px; } }
@media (max-width: 480px) { .tc-stage { aspect-ratio: 1 / 1; } .tc-thumb.is-active { width: 90px; } .tc-arrow--prev { left: 8px; } .tc-arrow--next { right: 8px; } }

/* RESPONSIVE REFINEMENTS */
@media (max-width: 1023px) {
    .hero-watermark {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 112px 0 64px;
    }

    .hero-container {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .hero-content {
        max-width: 680px;
    }

    .hero-actions,
    .trust-indicators {
        align-items: center;
    }

    .hero-visual {
        flex: none;
        width: 100%;
        height: auto;
    }

    .hero-logo-bg {
        width: min(320px, 76vw);
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .site-header {
        padding: 12px 0;
    }

    .site-header.scrolled {
        padding: 10px 0;
    }

    .hero {
        padding: 96px 0 48px;
    }

    h1.hero-title {
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.12;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .hero-actions {
        width: 100%;
        margin-bottom: 28px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-logo-bg {
        width: min(240px, 70vw);
    }

    .trust-indicators {
        font-size: 13px;
    }
}
