/* navbar-styles.css */
:root {
    --primary-dark: #006571;
    --primary-medium: #019589;
    --primary-light: #01a89e;
    --special-light: #00FDF2;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --success: #28a745;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --gradient-primary: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    --topbar-color: #0B2C3A;
    --text-dark: #201E1E;
    --submenu-bg: #c4c4c4;
    --gray-light: #f8f9fa;

    --shadow-light: rgba(27, 27, 27, 0.1);
    --shadow-medium: rgba(27, 27, 27, 0.2);
    --shadow-heavy: rgba(27, 27, 27, 0.3);


    --space-pp: 0.25rem;
    --space-p: 0.5rem;
    --space-pm: 0.75rem;
    --space-m: 1rem;
    --space-g: 1.5rem;
    --space-gg: 2rem;
    --space-ggg: 3rem;
    --space-4g: 4rem;
    --space-5g: 5rem;

    --transition-lento: 0.8s ease;
    --transition-normal: 0.4s ease;
    --transition-rapido: 0.2s ease;
    --transition-icon: max-width 0.3s ease, max-height 0.3s ease;
}



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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* ==================================================================================
HEADER & NAVBAR BASE
=================================================================================== */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(1, 149, 137, 0.1);
    z-index: 1050;
}


/* ==================================================================================
SCROLL EFFECTS
=================================================================================== */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* ==================================================================================
ANIMATIONS
=================================================================================== */
.navbar-collapse.collapsing,
.navbar-collapse.show {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================================================
   MAIN HERO CONTAINER COMPONENT
   =============================================================== */
.hero-diagonal {
    position: relative;
    background: var(--gradient-primary);
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding: 90px 1rem 2rem;
}

/* ===============================================================
   BACKGROUND GRAPHICS COMPONENT
   =============================================================== */
.hero-bg-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-bg-graphics::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-slow 20s ease-in-out infinite;
}

.hero-bg-graphics::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-slow 25s ease-in-out infinite reverse;
}

/* ===============================================================
   CONTENT WRAPPER COMPONENT
   =============================================================== */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* ===============================================================
   TEXT CONTENT COMPONENT
   =============================================================== */
.hero-text-content {
    color: var(--white);
    text-align: center;
    width: 100%;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    max-width: 100%;
}


/* ===============================================================
   STATS GRID COMPONENT (mantido para compatibilidade)
   =============================================================== */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    margin-top: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.25rem;
}

/* ===============================================================
   IMAGE SECTION COMPONENT
   =============================================================== */
.hero-image-section {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 250px;
}

/* ===============================================================
   DIAGONAL CLIPPED IMAGE COMPONENT
   =============================================================== */
.diagonal-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    clip-path: polygon(0 0, 85% 0, 100% 100%, 15% 100%);
}

.hero-doctor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.hero-doctor-image:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(1, 169, 158, 0.3) 0%,
            rgba(0, 101, 113, 0.2) 100%);
    mix-blend-mode: overlay;
}

/* ===============================================================
   PLAY BUTTON CONTAINER COMPONENT
   =============================================================== */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

/* ===============================================================
   MAIN PLAY BUTTON COMPONENT
   =============================================================== */
.play-button-main {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* ===============================================================
   PLAY ICON COMPONENT
   =============================================================== */
.play-icon {
    width: 0;
    height: 0;
    border-left: 15px solid #01a89e;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    margin-left: 3px;
    transition: all 0.3s ease;
}

/* ===============================================================
   RIPPLE RINGS COMPONENT
   =============================================================== */
.ripple-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ripple-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: ripple 2s infinite ease-out;
}

.ripple-ring:nth-child(1) {
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.ripple-ring:nth-child(2) {
    width: 100px;
    height: 100px;
    animation-delay: 0.5s;
}

.ripple-ring:nth-child(3) {
    width: 120px;
    height: 120px;
    animation-delay: 1s;
}

/* ===============================================================
   PULSE EFFECT COMPONENT
   =============================================================== */
.pulse-overlay {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(1, 168, 158, 0.3) 0%, transparent 70%);
    animation: pulse 3s infinite ease-in-out;
    pointer-events: none;
}

/* ===============================================================
   GLOW EFFECT COMPONENT
   =============================================================== */
.glow-effect {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            transparent,
            rgba(1, 168, 158, 0.4),
            transparent,
            rgba(1, 168, 158, 0.4),
            transparent);
    animation: rotate-glow 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* ===============================================================
   FLOATING PARTICLES COMPONENT
   =============================================================== */
.floating-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: float-particle 6s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 20%;
    left: 80%;
    animation-delay: 0s;
    animation-duration: 5s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 15%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 70%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.particle:nth-child(4) {
    top: 30%;
    left: 20%;
    animation-delay: 3s;
    animation-duration: 8s;
}

.particle:nth-child(5) {
    top: 70%;
    left: 85%;
    animation-delay: 1.5s;
    animation-duration: 5.5s;
}

/* ===============================================================
   HOVER EFFECTS COMPONENT
   =============================================================== */
.video-play-button:hover .play-button-main {
    transform: scale(1.1);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 1);
}

.video-play-button:hover .play-icon {
    border-left-color: #006571;
    transform: scale(1.1);
}

.video-play-button:hover .glow-effect {
    opacity: 1;
}

.video-play-button:hover .ripple-ring {
    animation-duration: 1.5s;
}

.video-play-button:hover .pulse-overlay {
    animation-duration: 2s;
}

/* ===============================================================
   ACTIVE/CLICK EFFECTS COMPONENT
   =============================================================== */
.video-play-button:active .play-button-main {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.video-play-button.clicked .play-button-main {
    animation: click-burst 0.6s ease-out;
}

/* ===============================================================
   LOADING STATE COMPONENT
   =============================================================== */
.video-play-button.loading .play-icon {
    display: none;
}

.video-play-button.loading .play-button-main::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid rgba(1, 168, 158, 0.3);
    border-top: 2px solid #01a89e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ===============================================================
   RESPONSIVE BREAKPOINTS
   =============================================================== */
/* TABLET - SM (576px+) */
@media (min-width: 576px) {
    .hero-diagonal {
        padding: 90px 2rem 2rem;
    }

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

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

    .hero-cta-buttons {
        flex-direction: row;
        max-width: none;
        justify-content: center;
    }

    .btn-demo,
    .btn-whatsapp {
        width: auto;
        min-width: 180px;
    }

    .hero-image-section {
        max-width: 400px;
        height: 300px;
    }

    .play-button-main {
        width: 70px;
        height: 70px;
    }

    .play-icon {
        border-left-width: 18px;
        border-top-width: 11px;
        border-bottom-width: 11px;
    }

    .hero-bg-graphics::before {
        width: 400px;
        height: 400px;
    }

    .hero-bg-graphics::after {
        width: 300px;
        height: 300px;
    }

    .hero-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 600px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

/* TABLET LANDSCAPE - MD (768px+) */
@media (min-width: 768px) {
    .hero-content-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
        max-width: 1200px;
    }

    .hero-text-content {
        flex: 1;
        text-align: left;
        max-width: none;
    }

    .hero-image-section {
        flex: 1;
        max-width: none;
        height: 400px;
    }

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

    .hero-description {
        font-size: 1.25rem;
        max-width: 90%;
    }

    .hero-cta-buttons {
        justify-content: flex-start;
        margin: 0;
    }
}

/* DESKTOP - LG (992px+) */
@media (min-width: 992px) {
    .hero-diagonal {
        padding: 90px 3rem 3rem;
    }

    .hero-content-wrapper {
        gap: 4rem;
        max-width: 1200px;
    }

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

    .hero-description {
        font-size: 1.3rem;
    }

    .hero-image-section {
        height: 500px;
    }

    .play-button-main {
        width: 80px;
        height: 80px;
    }

    .play-icon {
        border-left-width: 20px;
        border-top-width: 12px;
        border-bottom-width: 12px;
        margin-left: 5px;
    }

    .hero-bg-graphics::before {
        width: 600px;
        height: 600px;
    }

    .hero-bg-graphics::after {
        width: 400px;
        height: 400px;
    }

    .floating-particles {
        width: 200px;
        height: 200px;
    }

    .particle {
        width: 4px;
        height: 4px;
    }
}

/* DESKTOP LARGE - XL (1200px+) */
@media (min-width: 1200px) {
    .hero-content-wrapper {
        max-width: 1400px;
    }

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

    .hero-description {
        font-size: 1.35rem;
    }
}

/* ===============================================================
   ANIMATIONS
   =============================================================== */
@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes rotate-glow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes float-particle {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.7;
    }

    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }

    50% {
        transform: translateY(-10px) translateX(-15px);
        opacity: 0.8;
    }

    75% {
        transform: translateY(-25px) translateX(5px);
        opacity: 0.9;
    }
}

@keyframes click-burst {
    0% {
        transform: scale(1.1);
        box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    }

    50% {
        transform: scale(1.3);
        box-shadow: 0 20px 60px rgba(1, 168, 158, 0.4);
    }

    100% {
        transform: scale(1.1);
        box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ===============================================================
   CSS PURE ANIMATIONS (substituindo AOS)
   =============================================================== */
.hero-text-content {
    animation: slideInLeft 0.8s ease-out;
}

.hero-image-section {
    animation: slideInRight 0.8s ease-out 0.2s both;
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==================================================================================
WHATS APP FLOAT BUTTON
=================================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

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

/* ==================================================================================
FEATURE
=================================================================================== */
.features {
    padding: 80px 5%;
    background: var(--light-gray);
}

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

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.feature-description {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ===============================================================
GESTOR BI SECTION - COMPONENTE PRINCIPAL
=============================================================== */
.gestor-bi {
    padding: 60px 0;
    background: var(--white);
    overflow: hidden;
}

.gestor-bi .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===============================================================
HEADER COMPONENT
=============================================================== */
.bi-section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.bi-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-medium));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bi-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.bi-section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===============================================================
BI CONTENT ROWS COMPONENT
=============================================================== */
.bi-content-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    animation: slideInFromSide 0.8s ease-out;
}

.bi-content-row:last-child {
    margin-bottom: 0;
}

.bi-content-row.reverse {
    flex-direction: row-reverse;
    animation: slideInFromSideReverse 0.8s ease-out;
}

/* ===============================================================
BI IMAGE COMPONENT
=============================================================== */
.bi-image-container {
    flex: 1;
    position: relative;
}

.bi-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.bi-image:hover {
    transform: scale(1.02);
}

.bi-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(1, 149, 137, 0.05) 0%,
            rgba(0, 101, 113, 0.05) 100%);
    border-radius: var(--border-radius-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bi-image-container:hover .bi-image-overlay {
    opacity: 1;
}

/* ===============================================================
BI TEXT CONTENT COMPONENT
=============================================================== */
.bi-text-content {
    flex: 1;
}

.bi-content-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.bi-content-description {
    font-size: 1.05rem;
    color: var(--medium-gray);
}

/* ===============================================================
BI FEATURES LIST COMPONENT
=============================================================== */
.bi-features-list {
    list-style: none;
    padding: 0;
}

.bi-feature-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.bi-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-light);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.bi-feature-icon i {
    color: var(--white);
    font-size: 0.7rem;
}

.bi-feature-text {
    color: var(--dark-gray);
    font-weight: 500;
}

/* ===============================================================
BI CTA BUTTON COMPONENT
=============================================================== */
.bi-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.bi-cta-button:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.bi-cta-button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.bi-cta-button:hover i {
    transform: translateX(3px);
}

/* ===============================================================
RESPONSIVE BREAKPOINTS
=============================================================== */
@media (max-width: 768px) {
    .gestor-bi {
        padding: 40px 0;
    }

    .bi-section-header {
        margin-bottom: 0.5rem;
    }

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

    .bi-content-row {
        flex-direction: column !important;
        gap: 2rem;
        text-align: center;
    }

    .bi-content-title {
        font-size: 1.5rem;
    }

    .bi-content-description {
        font-size: 1rem;
    }

    .bi-features-list {
        max-width: 400px;
        margin: 0 auto 0.5rem;
    }
}

@media (max-width: 576px) {
    .bi-section-title {
        font-size: 1.8rem;
    }

    .bi-content-title {
        font-size: 1.3rem;
    }

    .bi-cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* ===============================================================
ANIMAÃ‡Ã•ES
=============================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromSide {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromSideReverse {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =============================================================================================
   NAVBAR ACTIVE STATES - COMPONENT
   ============================================================================================= */

/* Desktop Navigation - Estado Ativo */
.nav-menu-desktop .nav-link.active {
    color: var(--primary-medium) !important;
    font-weight: 600;
}

.nav-menu-desktop .nav-link.active::before {
    width: 100% !important;
    background: var(--primary-medium) !important;
}

/* Mobile Navigation - Estado Ativo */
.mobile-nav-link.active {
    color: var(--primary-medium) !important;
    background: rgba(1, 149, 137, 0.1) !important;
    padding-left: 0.5rem !important;
    font-weight: 600;
    border-radius: var(--border-radius);
}

/* Garantir que hover + active funcionem juntos */
.nav-menu-desktop .nav-link.active:hover {
    color: var(--primary-dark) !important;
}

.nav-menu-desktop .nav-link.active:hover::before {
    background: var(--primary-dark) !important;
}

.mobile-nav-link.active:hover {
    color: var(--primary-dark) !important;
    background: rgba(1, 149, 137, 0.15) !important;
}


/* =============================================================================================
   BENEFÃCIOS
   ============================================================================================= */
.benefits {
    padding: 80px 5%;
    background: var(--white);
}

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

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--medium-gray);
}

/* ===============================================================
   CONTACT SECTION - COMPONENTE MODERNO E COMPACTO
   =============================================================== */

/* ===============================================================
   MAIN CONTACT CONTAINER COMPONENT
   =============================================================== */
.contact {
    background: var(--light-gray);
    min-height: auto;
}

.contact .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

/* ===============================================================
   SECTION HEADER COMPONENT - COMPACTO
   =============================================================== */
.contact .section-header {
    text-align: center;
}

.contact .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.contact .section-subtitle {
    font-size: 1rem;
    color: var(--medium-gray);
    max-width: 600px;
    line-height: 1.5;
}

/* ===============================================================
   UNIFIED CONTACT CONTAINER COMPONENT
   =============================================================== */
.contact-unified-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
}

/* ===============================================================
   CONTACT INFO COMPONENT - COMPACTO
   =============================================================== */
.contact-info-section {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-medium), var(--primary-dark));
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.contact-info-description {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
}

/* ===============================================================
   CONTACT ITEMS LIST COMPONENT - COMPACTO
   =============================================================== */
.contact-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.contact-item-modern:last-child {
    margin-bottom: 0;
}

.contact-icon-modern {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-content-modern {
    flex: 1;
}

.contact-label-modern {
    font-weight: 600;
    font-size: 0.85rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value-modern {
    font-size: 0.95rem;
    opacity: 1;
    line-height: 1.3;
}

.contact-value-modern a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-value-modern a:hover {
    opacity: 0.8;
}

/* ===============================================================
   CONTACT FORM COMPONENT - MODERNO
   =============================================================== */
.contact-form-section {
    padding: 2rem 1.5rem;
    background: var(--white);
}

.contact-form-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.2rem;
    text-align: center;
}

/* ===============================================================
   FORM COMPONENTS - COMPACTOS
   =============================================================== */
.form-group-modern {
    margin-bottom: 0.2rem;
}

.form-group-modern:last-of-type {
    margin-bottom: 1.5rem;
}

.form-label-modern {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.form-control-modern {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control-modern:focus {
    outline: none;
    border-color: var(--primary-medium);
    box-shadow: 0 0 0 3px rgba(1, 149, 137, 0.1);
    transform: translateY(-1px);
}

.form-control-modern::placeholder {
    color: #adb5bd;
    font-size: 0.9rem;
}

/* ===============================================================
   TEXTAREA COMPONENT
   =============================================================== */
.form-textarea-modern {
    resize: vertical;
    min-height: 80px;
    max-height: 120px;
}

/* ===============================================================
   SUBMIT BUTTON COMPONENT - MODERNO
   =============================================================== */
.btn-submit-modern {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-medium), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 149, 137, 0.3);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
}

.btn-submit-modern:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

.btn-submit-modern i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-submit-modern:hover i {
    transform: translateX(3px);
}

/* ===============================================================
   LOADING STATE COMPONENT
   =============================================================== */
.btn-submit-modern.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-submit-modern.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

/* ===============================================================
   ANIMATIONS COMPONENT
   =============================================================== */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.contact-unified-container {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================================================
   SUCCESS/ERROR STATES COMPONENT
   =============================================================== */
.form-message {
    padding: 0.4rem 0.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ===============================================================
   ACCESSIBILITY ENHANCEMENTS COMPONENT
   =============================================================== */
.form-control-modern:focus {
    outline: 2px solid var(--primary-medium);
    outline-offset: 2px;
}

.btn-submit-modern:focus {
    outline: 2px solid var(--primary-medium);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

    .contact-unified-container,
    .btn-submit-modern,
    .form-control-modern {
        animation: none;
        transition: none;
    }
}

/* =============================================================== CTA SECTION =============================================================== */
.cta-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--primary-medium) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.btn-white:hover {
    background: var(--light-gray);
    color: var(--primary-dark);
}

/* =============================================================== FOOTER COMPONENT =============================================================== */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 10px 1% 3px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 0.3rem;
}

.footer-section h3 {
    color: var(--primary-light);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.footer-section p,
.footer-section li {
    color: #ccc;
    line-height: 1.8;
}

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 0.4rem;
    border-top: 1px solid #555;
    color: #ccc;
}

.footer-section a i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.footer-section a i:hover {
    transform: scale(1.2);
}

.footer-bottom p {
    margin: 0;
    font-size: 9px;
}

/* =============================================================== ANIMATIONS =============================================================== */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* ===============================================================
   RESPONSIVE BREAKPOINTS - CONTACT SECTION COMPONENT
   =============================================================== */

/* Desktop - Layout lado a lado (mantÃ©m como estÃ¡) */
@media (min-width: 769px) {
    .contact-unified-container {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form-mobile-first {
        order: 0;
    }

    .contact-info-mobile-second {
        order: 1;
    }
}

/* Tablet */
@media (max-width: 768px) and (min-width: 577px) {
    .contact-unified-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-section {
        padding: 1.8rem 1.3rem;
    }

    .contact-info-section {
        padding: 1.8rem 1.3rem;
    }

    .contact-form-mobile-first {
        order: 1;
        border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    }

    .contact-info-mobile-second {
        order: 2;
        border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    }

    .contact-form-title {
        font-size: 1.3rem;
    }

    .contact-info-title {
        font-size: 1.1rem;
    }
}

/* Mobile - Layout vertical (formulÃ¡rio primeiro) */
@media (max-width: 576px) {
    .contact-unified-container {
        grid-template-columns: 1fr;
        gap: 0;
        margin: 0 0.5rem;
    }

    .contact-form-section {
        padding: 1.5rem 1.2rem;
    }

    .contact-info-section {
        padding: 1.5rem 1.2rem;
    }

    /* Ordem mobile - FormulÃ¡rio primeiro */
    .contact-form-mobile-first {
        order: 1;
        border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    }

    /* InformaÃ§Ãµes de contato por Ãºltimo */
    .contact-info-mobile-second {
        order: 2;
        border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    }

    .contact-form-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .contact-info-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .contact-info-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .form-group-modern {
        margin-bottom: 1rem;
    }

    .form-group-modern:last-of-type {
        margin-bottom: 1.3rem;
    }

    .form-control-modern {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .btn-submit-modern {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .contact-icon-modern {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .contact-item-modern {
        gap: 0.6rem;
        margin-bottom: 0.8rem;
        padding: 0.4rem 0;
    }

    .contact-label-modern {
        font-size: 0.8rem;
    }

    .contact-value-modern {
        font-size: 0.9rem;
    }
}

/* Mobile muito pequeno (320px-375px) */
@media (max-width: 375px) {
    .contact-unified-container {
        margin: 0 0.3rem;
    }

    .contact-form-section,
    .contact-info-section {
        padding: 1.2rem 1rem;
    }

    .contact-form-title {
        font-size: 1.1rem;
    }

    .contact-info-title {
        font-size: 0.95rem;
    }

    .form-control-modern {
        padding: 0.75rem 0.9rem;
        font-size: 0.85rem;
    }

    .btn-submit-modern {
        padding: 0.9rem 1.3rem;
        font-size: 0.9rem;
    }
}

/* ===============================================================
   BENEFITS DESKTOP LAYOUT - COMPONENTE CSS ESPECÃFICO
   =============================================================== */

/* ===============================================================
   GRID LAYOUT RESPONSIVO - 2 COLUNAS NO DESKTOP
   =============================================================== */
.benefits-grid {
    display: grid;
    gap: 3rem;

    /* Mobile: 1 coluna */
    grid-template-columns: 1fr;
}

/* ===============================================================
   TABLET LAYOUT - 2 COLUNAS (768px+)
   =============================================================== */
@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* ===============================================================
   DESKTOP LAYOUT - MANTÃ‰M 2 COLUNAS (992px+)
   =============================================================== */
@media (min-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        max-width: 900px;
        /* Limita a largura total para melhor proporÃ§Ã£o */
        margin: 0 auto;
        /* Centraliza o grid */
    }
}

/* ===============================================================
   DESKTOP LARGE - MANTÃ‰M 2 COLUNAS (1200px+)
   =============================================================== */
@media (min-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem;
        max-width: 1000px;
    }
}

/* ===============================================================
   EXTRA LARGE DESKTOP - MANTÃ‰M 2 COLUNAS (1400px+)
   =============================================================== */
@media (min-width: 1400px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
        max-width: 1100px;
    }
}

/* ===============================================================
   AJUSTES DOS BENEFIT ITEMS PARA MELHOR ALINHAMENTO
   =============================================================== */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

/* ===============================================================
   OTIMIZAÃ‡Ã•ES PARA CARDS MAIORES EM 2 COLUNAS
   =============================================================== */
@media (min-width: 768px) {
    .benefit-item {
        padding: 1.5rem;
        background: var(--white);
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow);
        transition: all 0.3s ease;
    }

    .benefit-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    /* Aumentar ligeiramente o Ã­cone para melhor proporÃ§Ã£o */
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        flex-shrink: 0;
    }

    /* Melhorar tipografia para cards maiores */
    .benefit-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .benefit-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* ===============================================================
   AJUSTES MOBILE PARA MANTER BOA EXPERIÃŠNCIA
   =============================================================== */
@media (max-width: 767px) {
    .benefits-grid {
        gap: 2rem;
    }

    .benefit-item {
        padding: 0.5rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .benefit-content h3 {
        font-size: 1.2rem;
    }

    .benefit-content p {
        font-size: 0.95rem;
    }
}

/* ===============================================================
HEADER COMPONENT
=============================================================== */
.sint-section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.sint-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-medium));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sint-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.sint-section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.sint-image-container {
    flex: 1;
    justify-content: center;
    align-items: center;
    display: flex;
}

.sint-image {
    display: flex;
    align-items: flex-end;
    width: 50%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.cart-image {
    width: 60%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

/* ===============================================================
   FIX SINTETIZADOR TRANSPARENT BACKGROUND - COMPONENTE CSS ESPECÃFICO
   =============================================================== */

/* Remove qualquer background, border, padding que pode estar sendo herdado */
.sint-image-container,
.sint-image-container img,
.sint-image {
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -o-box-shadow: none !important;
}

/* ===============================================================
   DROPDOWN MENU COMPONENT - DESKTOP
   =============================================================== */

/* Container do dropdown */
.funcionalidades-dropdown {
    position: relative;
}

/* Link principal com seta */
.dropdown-toggle-custom {
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

/* Seta do dropdown */
.dropdown-arrow {
    font-size: 0.7rem !important;
    transition: transform 0.3s ease !important;
    color: var(--medium-gray) !important;
}

/* Hover no link principal */
.dropdown-toggle-custom:hover {
    color: var(--primary-medium) !important;
}

.dropdown-toggle-custom:hover .dropdown-arrow {
    transform: rotate(180deg) !important;
    color: var(--primary-medium) !important;
}

/* ===============================================================
   DROPDOWN MENU CONTENT COMPONENT
   =============================================================== */
.dropdown-menu-custom {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    min-width: 280px !important;
    background: var(--white) !important;
    border-radius: var(--border-radius-lg) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(1, 149, 137, 0.1) !important;
    padding: 0.5rem 0 !important;
    margin-top: 0.5rem !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(-50%) translateY(-10px) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 1050 !important;
    list-style: none !important;
}

/* Estado ativo do dropdown */
.funcionalidades-dropdown:hover .dropdown-menu-custom,
.funcionalidades-dropdown.active .dropdown-menu-custom {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
}

/* ===============================================================
   DROPDOWN ITEMS COMPONENT
   =============================================================== */
.dropdown-item-custom {
    display: flex !important;
    align-items: center !important;
    padding: 0.8rem 1rem !important;
    color: var(--dark-gray) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    margin: 0.2rem 0.5rem !important;
    border-radius: var(--border-radius) !important;
    cursor: pointer !important;
    gap: 0.8rem !important;
}

.dropdown-item-custom:hover {
    background: rgba(1, 149, 137, 0.08) !important;
    color: var(--primary-medium) !important;
    transform: translateX(3px) !important;
}

/* Ãcones dos itens */
.dropdown-item-icon {
    width: 36px !important;
    height: 36px !important;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-medium)) !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--white) !important;
    font-size: 0.9rem !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
}

.dropdown-item-custom:hover .dropdown-item-icon {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 15px rgba(1, 149, 137, 0.3) !important;
}

/* ConteÃºdo dos itens */
.dropdown-item-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.1rem !important;
}

.dropdown-item-title {
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    line-height: 1.2 !important;
}

.dropdown-item-desc {
    font-size: 0.8rem !important;
    color: var(--medium-gray) !important;
    opacity: 0.8 !important;
}

.dropdown-item-custom:hover .dropdown-item-desc {
    color: var(--primary-dark) !important;
    opacity: 0.9 !important;
}

/* ===============================================================
   MOBILE DROPDOWN COMPONENT
   =============================================================== */

/* Container do mobile dropdown */
.mobile-dropdown-container {
    margin: 0.2rem 0 !important;
}

/* Toggle do mobile dropdown */
.mobile-dropdown-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 0.75rem 0 !important;
    cursor: pointer !important;
}

/* Seta mobile */
.mobile-dropdown-arrow {
    font-size: 0.8rem !important;
    transition: transform 0.3s ease !important;
    color: var(--medium-gray) !important;
}

/* Estado ativo mobile */
.mobile-dropdown-toggle.active .mobile-dropdown-arrow {
    transform: rotate(180deg) !important;
    color: var(--primary-medium) !important;
}

/* ===============================================================
   MOBILE SUBMENU COMPONENT
   =============================================================== */
.mobile-submenu {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    background: rgba(1, 149, 137, 0.05) !important;
    border-radius: 0 0 var(--border-radius) var(--border-radius) !important;
}

/* Estado ativo do submenu */
.mobile-submenu.active {
    max-height: 200px !important;
    padding: 0.5rem 0 !important;
}

/* Links do submenu mobile */
.mobile-submenu-link {
    display: flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    padding: 0.6rem 1rem !important;
    margin: 0.1rem 0.5rem !important;
    font-size: 0.9rem !important;
    border-radius: var(--border-radius) !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
}

.mobile-submenu-link:hover {
    background: rgba(1, 149, 137, 0.1) !important;
    color: var(--primary-medium) !important;
    padding-left: 1.2rem !important;
}

.mobile-submenu-link i {
    font-size: 0.8rem !important;
    width: 16px !important;
    text-align: center !important;
    color: var(--primary-medium) !important;
}

/* ===============================================================
   ACTIVE STATES COMPONENT
   =============================================================== */

/* Estado ativo para links do dropdown */
.dropdown-item-custom.active {
    background: rgba(1, 149, 137, 0.1) !important;
    color: var(--primary-medium) !important;
}

.dropdown-item-custom.active .dropdown-item-icon {
    background: linear-gradient(135deg, var(--primary-medium), var(--primary-dark)) !important;
    box-shadow: 0 4px 15px rgba(1, 149, 137, 0.3) !important;
}

/* Estado ativo para links mobile */
.mobile-submenu-link.active {
    background: rgba(1, 149, 137, 0.15) !important;
    color: var(--primary-medium) !important;
    font-weight: 600 !important;
}

/* Estado ativo para link principal */
.dropdown-toggle-custom.active {
    color: var(--primary-medium) !important;
}

.dropdown-toggle-custom.active .dropdown-arrow {
    transform: rotate(180deg) !important;
    color: var(--primary-medium) !important;
}

/* ===============================================================
   RESPONSIVE BREAKPOINTS COMPONENT
   =============================================================== */

/* Tablet */
@media (max-width: 991.98px) {
    .dropdown-menu-custom {
        display: none !important;
    }
}

/* Mobile pequeno */
@media (max-width: 576px) {
    .dropdown-menu-custom {
        min-width: 250px !important;
    }

    .dropdown-item-custom {
        padding: 0.7rem 0.8rem !important;
    }

    .dropdown-item-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.8rem !important;
    }

    .dropdown-item-title {
        font-size: 0.9rem !important;
    }

    .dropdown-item-desc {
        font-size: 0.75rem !important;
    }
}

/* ===============================================================
   ANIMATIONS COMPONENT
   =============================================================== */

/* AnimaÃ§Ã£o de entrada dos itens */
@keyframes dropdownItemFadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dropdown-item-custom {
    animation: dropdownItemFadeIn 0.3s ease-out !important;
}

.dropdown-item-custom:nth-child(1) {
    animation-delay: 0.1s !important;
}

.dropdown-item-custom:nth-child(2) {
    animation-delay: 0.2s !important;
}

.dropdown-item-custom:nth-child(3) {
    animation-delay: 0.3s !important;
}

/* ===============================================================
   ACCESSIBILITY COMPONENT
   =============================================================== */

/* Estados de foco */
.dropdown-toggle-custom:focus,
.dropdown-item-custom:focus,
.mobile-dropdown-toggle:focus {
    outline: 2px solid var(--primary-medium) !important;
    outline-offset: 2px !important;
}

/* PreferÃªncia de movimento reduzido */
@media (prefers-reduced-motion: reduce) {

    .dropdown-menu-custom,
    .dropdown-arrow,
    .mobile-dropdown-arrow,
    .mobile-submenu,
    .dropdown-item-custom,
    .dropdown-item-icon {
        transition: none !important;
        animation: none !important;
    }
}

/* ===============================================================
   Z-INDEX MANAGEMENT COMPONENT
   =============================================================== */
.dropdown-menu-custom {
    z-index: 1050 !important;
}

.header.scrolled .dropdown-menu-custom {
    z-index: 1051 !important;
}

/* ===============================================================
   HERO CTA BUTTONS - NEURODESIGN & DOPAMINE STIMULATION
=============================================================== */

/* ===== CONTAINER DOS BOTÃ•ES CTA ===== */
.hero-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 32px;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }
}

/* ===== BOTÃƒO PRINCIPAL - AGENDAR DEMONSTRAÃ‡ÃƒO ===== */
.btn-demo {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    /* Layout e Tamanho */
    padding: 18px 36px;
    border-radius: 12px;
    min-width: 280px;
    height: 60px;

    /* Tipografia */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.3px;

    /* Cores e Background */
    background: linear-gradient(135deg, #FF6B35 0%, #F7941D 50%, #FF8A3C 100%);
    color: #FFFFFF;
    border: none;

    /* Sombra e Profundidade */
    box-shadow:
        0 8px 24px rgba(255, 107, 53, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);

    /* TransiÃ§Ãµes Suaves */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    z-index: 2;
}

/* Efeito de Shimmer (Brilho Sutil) */
.btn-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

/* Micro-animaÃ§Ã£o de Hover */
.btn-demo:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 12px 36px rgba(255, 107, 53, 0.45),
        0 8px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);

    background: linear-gradient(135deg, #FF7A45 0%, #FA9D2D 50%, #FF9A4C 100%);
}

/* Trigger do efeito Shimmer no hover */
.btn-demo:hover::before {
    left: 100%;
}

/* Efeito de Click - Microrecompensa */
.btn-demo:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow:
        0 4px 16px rgba(255, 107, 53, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.1s ease;
}

/* Ãcone do botÃ£o principal */
.btn-demo i {
    font-size: 18px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.btn-demo:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* PulsaÃ§Ã£o sutil para urgÃªncia */
.btn-demo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: rgba(255, 107, 53, 0.3);
    animation: subtle-pulse 3s infinite;
    z-index: -1;
}

@keyframes subtle-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* ===== BOTÃƒO SECUNDÃRIO - WHATSAPP ===== */
.btn-whatsapp {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    /* Layout e Tamanho */
    padding: 16px 28px;
    border-radius: 12px;
    min-width: 200px;
    height: 56px;

    /* Tipografia */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.2px;

    /* Cores e Background */
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.2);

    /* Sombra e Profundidade */
    box-shadow:
        0 6px 20px rgba(37, 211, 102, 0.35),
        0 2px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);

    /* TransiÃ§Ãµes */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

/* Hover do botÃ£o WhatsApp */
.btn-whatsapp:hover {
    transform: translateY(-2px) scale(1.01);
    background: linear-gradient(135deg, #2BE472 0%, #159F8A 100%);
    box-shadow:
        0 8px 28px rgba(37, 211, 102, 0.45),
        0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Efeito de Click - WhatsApp */
.btn-whatsapp:active {
    transform: translateY(0) scale(0.98);
    box-shadow:
        0 3px 12px rgba(37, 211, 102, 0.4),
        0 1px 6px rgba(0, 0, 0, 0.2);
}

/* Ãcone do WhatsApp com animaÃ§Ã£o */
.btn-whatsapp i {
    font-size: 16px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.btn-whatsapp:hover i {
    transform: scale(1.15) rotate(-5deg);
    animation: whatsapp-bounce 0.6s ease;
}

@keyframes whatsapp-bounce {

    0%,
    100% {
        transform: scale(1.15) rotate(-5deg);
    }

    50% {
        transform: scale(1.25) rotate(0deg);
    }
}

/* ===== ELEMENTOS DE URGÃŠNCIA E ESCASSEZ ===== */


@keyframes urgency-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* ===== ESTADOS DE LOADING E SUCESSO ===== */

/* Estado de Loading */
.btn-demo.loading {
    pointer-events: none;
    background: linear-gradient(135deg, #ccc 0%, #999 100%);
    color: #666;
}

.btn-demo.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #666;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Estado de Sucesso */
.btn-demo.success {
    background: linear-gradient(135deg, #28A745 0%, #20C997 100%);
    transform: scale(1.05);
}

.btn-demo.success::after {
    content: 'âœ“';
    position: absolute;
    font-size: 18px;
    color: white;
    animation: success-pop 0.3s ease;
}

@keyframes success-pop {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* ===== EFEITOS DE REWARD PREDICTION ERROR ===== */

/* Glowing Border Effect */
.btn-demo:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(255, 107, 53, 0.3),
        0 8px 24px rgba(255, 107, 53, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Subtle Animation on Page Load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta-buttons {
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

/* ===== RESPONSIVIDADE AVANÃ‡ADA ===== */

@media (max-width: 768px) {

    .btn-demo,
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
        min-width: unset;
    }

    .btn-demo {
        padding: 16px 24px;
        font-size: 15px;
    }

    .btn-whatsapp {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* ===== ACESSIBILIDADE ===== */

.btn-demo:focus,
.btn-whatsapp:focus {
    outline: 2px solid #4A90E2;
    outline-offset: 2px;
}

/* Reduz animaÃ§Ãµes para usuÃ¡rios que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {

    .btn-demo,
    .btn-whatsapp {
        transition: none;
    }

    .btn-demo::after,
    .btn-demo::before {
        animation: none;
    }
}

/* ===== HIGH CONTRAST MODE ===== */

@media (prefers-contrast: high) {
    .btn-demo {
        border: 2px solid #000;
        background: #FF6B35;
    }

    .btn-whatsapp {
        border: 2px solid #000;
        background: #25D366;
    }
}

/* ===============================================================
   HERO CTA ENHANCED - ELEGANT DOPAMINE TRIGGERS
   Componente CSS para estimuladores sutis de conversÃ£o
   =============================================================== */

/* ===== ESTRUTURA BASE DOS BOTÃ•ES APRIMORADOS ===== */

/* Container dos botÃµes com espaÃ§amento otimizado */
.hero-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 32px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* ===== BOTÃƒO DEMO - DESIGN INTEGRADO ===== */
.btn-demo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 180px;
    padding: 18px 12px 22px;
}

/* Texto principal do botÃ£o demo */
.btn-demo .btn-main-text {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
}

/* Subtexto integrado - sem cartÃ£o */
.btn-demo .btn-subtext {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.85;
    letter-spacing: 0.3px;
    margin-top: 2px;
}

/* Badge GRÃTIS integrado */
.btn-demo .free-badge {
    background: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
    animation: subtle-glow 3s ease-in-out infinite;
}

@keyframes subtle-glow {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }

    50% {
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    }
}

/* ===== BOTÃƒO WHATSAPP - DESIGN INTEGRADO ===== */
.btn-whatsapp {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 120px;
    padding: 16px 28px 20px;
    height: 60px;
}

/* Texto principal do WhatsApp */
.btn-whatsapp .btn-main-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}

/* Status online integrado */
.btn-whatsapp .online-status {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
    animation: online-pulse 2s infinite ease-in-out;
}

@keyframes online-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Subtexto do WhatsApp */
.btn-whatsapp .btn-subtext {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.2px;
    margin-top: 2px;
}

/* ===== CONTADOR SOCIAL PROOF - MINIMALISTA ===== */
.social-proof-counter {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    white-space: nowrap;
    opacity: 0;
    animation: counter-fade-in 1s ease-out 2s both;
    z-index: 1;
}

@keyframes counter-fade-in {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-8px) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

/* ===== EFEITOS HOVER ELEGANTES ===== */
.btn-demo:hover .free-badge {
    background: rgba(255, 255, 255, 0.35);
    animation-duration: 1.5s;
}

.btn-demo:hover .btn-subtext {
    opacity: 1;
    transform: translateY(-1px);
}

.btn-whatsapp:hover .online-status {
    animation-duration: 1s;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6);
}

.btn-whatsapp:hover .btn-subtext {
    opacity: 1;
    color: rgba(255, 255, 255, 1);
}

/* ===== MICRO-ANIMAÃ‡Ã•ES NO CLICK ===== */
.btn-demo:active {
    transform: translateY(1px) scale(0.98);
}

.btn-whatsapp:active {
    transform: translateY(1px) scale(0.98);
}

/* ===== ESTADOS DE FEEDBACK ===== */
.btn-demo.loading .btn-main-text::after {
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #FFFFFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

.btn-demo.success .free-badge {
    background: #4CAF50;
    animation: success-bounce 0.6s ease;
}

@keyframes success-bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ===== RESPONSIVIDADE ELEGANTE ===== */
@media (max-width: 768px) {
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }

    .btn-demo,
    .btn-whatsapp {
        width: 100%;
        max-width: 320px;
        min-width: unset;
    }

    .social-proof-counter {
        display: none;
        /* Remove em mobile para nÃ£o poluir */
    }
}

@media (max-width: 480px) {
    .btn-demo {
        padding: 16px 24px 20px;
        min-width: 280px;
    }

    .btn-whatsapp {
        padding: 14px 24px 18px;
        min-width: 260px;
    }

    .btn-demo .btn-main-text,
    .btn-whatsapp .btn-main-text {
        font-size: 14px;
    }

    .btn-demo .btn-subtext,
    .btn-whatsapp .btn-subtext {
        font-size: 10px;
    }
}

/* ===== ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {

    .free-badge,
    .online-status,
    .social-proof-counter {
        animation: none;
    }

    .btn-demo:hover .btn-subtext,
    .btn-whatsapp:hover .btn-subtext {
        transform: none;
    }
}

/* ===== FOCUS STATES ===== */
.btn-demo:focus-visible,
.btn-whatsapp:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 3px;
}

/* ===== SUBTLE ENHANCEMENT ===== */
.btn-demo .btn-main-text i {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.btn-demo:hover .btn-main-text i {
    transform: scale(1.1) rotate(5deg);
}

.btn-whatsapp .btn-main-text i {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.btn-whatsapp:hover .btn-main-text i {
    transform: scale(1.15) rotate(-3deg);
}

/* ===============================================================
   YOUTUBE VIDEO HERO - FORMATO RETANGULAR COM CONTROLES
   VÃ­deo 16:9 com pause/play e barra de progresso no hover
   =============================================================== */

/* ===== CONTAINER DO VÃDEO - FORMATO RETANGULAR ===== */
.hero-video-container {
    position: relative;
    width: 100%;
    /* Aspect ratio 16:9 para formato retangular */
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    cursor: pointer;
}

/* ===== WRAPPER RESPONSIVO PARA YOUTUBE ===== */
.youtube-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.youtube-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
    pointer-events: none;
}

/* ===== CONTROLES PERSONALIZADOS ===== */
.video-controls-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-video-container:hover .video-controls-overlay {
    opacity: 1;
}

/* ===== BOTÃƒO PLAY/PAUSE CENTRAL ===== */
.play-pause-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    opacity: 0;
}

.hero-video-container.paused .play-pause-overlay {
    opacity: 1;
}

.hero-video-container:hover .play-pause-overlay {
    opacity: 0.9;
}

.play-pause-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(0, 0, 0, 0.95);
}

.play-pause-icon {
    color: white;
    font-size: 28px;
    margin-left: 3px;
    /* Ajuste para centralizar o Ã­cone play */
}

.play-pause-overlay.playing .play-pause-icon {
    margin-left: 0;
}

/* ===== BARRA DE PROGRESSO ===== */
.progress-bar-container {
    position: absolute;
    bottom: 60px;
    left: 20px;
    right: 80px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    pointer-events: all;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.hero-video-container:hover .progress-bar-container {
    opacity: 1;
    transform: translateY(0);
}

.progress-bar-fill {
    height: 100%;
    background: var(--primary-light);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

.progress-bar-container:hover {
    height: 8px;
    margin-bottom: -1px;
}

.progress-bar-container:hover .progress-bar-fill {
    background: var(--primary-medium);
}

/* ===== TEMPO DE DURAÃ‡ÃƒO ===== */
.video-time-display {
    position: absolute;
    bottom: 70px;
    right: 20px;
    color: white;
    font-size: 12px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.7);
    padding: 4px 8px;
    border-radius: 4px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.hero-video-container:hover .video-time-display {
    opacity: 1;
    transform: translateY(0);
}

/* ===== BOTÃƒO DE SOM ===== */
.sound-control {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    font-size: 18px;
    opacity: 0.9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.sound-control:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.95);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.sound-control.muted {
    color: #ff6b6b;
}

.sound-control.unmuted {
    color: #4ecdc4;
}

/* ===== INDICADOR DE CARREGAMENTO ===== */
.video-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-medium), var(--primary-dark));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 15;
    transition: all 0.5s ease;
}

.video-loading.loaded {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spinner-rotate 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spinner-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .hero-video-container {
        aspect-ratio: 16/9;
        /* MantÃ©m proporÃ§Ã£o em mobile */
    }

    .sound-control {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 15px;
        right: 15px;
    }

    .play-pause-overlay {
        width: 70px;
        height: 70px;
    }

    .play-pause-icon {
        font-size: 24px;
    }

    .progress-bar-container {
        bottom: 55px;
        left: 15px;
        right: 70px;
    }

    .video-time-display {
        bottom: 65px;
        right: 15px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .sound-control {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .play-pause-overlay {
        width: 60px;
        height: 60px;
    }

    .play-pause-icon {
        font-size: 20px;
    }

    .progress-bar-container {
        bottom: 50px;
        left: 10px;
        right: 55px;
        height: 4px;
    }

    .video-time-display {
        bottom: 60px;
        right: 10px;
        font-size: 10px;
    }
}

