    :root {
        --primary-blue: #0000FF;
        --primary-white: #FFFFFF;
        --dark-bg: #000000;
        --dark-box: #222;
        --dark-border: #333;
        --light-text: #FFFFFF;
        --light-blue-border: #FFFFFF;
        --card-featured-bg: #0000FF;
        --btn-featured-bg: #ffffff;
    }

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

    body {
        margin: 0;
        padding: 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background-image: url(../assets/images/bg-page-black.png);
        background-color: var(--dark-bg);
        color: var(--light-text);
        overflow-x: hidden;
    }

    /* Contahem regressiva para lançamento */
    /* Estilos para a tela de Contagem Regressiva */
    #countdown-screen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #000;
        /* Fundo Preto */
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        /* Garante que fica na frente de tudo */
        font-family: 'Arial', sans-serif;
    }

    .countdown-container {
        text-align: center;
    }

    .hero-text {
        text-transform: uppercase;
        margin-bottom: 30px;
    }

    .hero-text h2 {
        font-size: 1.5rem;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .hero-text h1 {
        font-size: 4rem;
        color: #0000FF;
        /* Azul do seu branding */
        font-weight: 900;
        margin: 0;
    }

    /* Caixas dos números */
    .time-box {
        display: inline-block;
        background-color: #1a1a1a;
        padding: 20px;
        margin: 0 10px;
        border-radius: 8px;
        min-width: 100px;
    }

    .time-box span {
        display: block;
        font-size: 3rem;
        font-weight: bold;
    }

    .time-box small {
        font-size: 0.8rem;
        text-transform: uppercase;
        color: #ccc;
    }
    .contagem_logo{
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .contagem_logo img{
        width: 200px;
    }
    /* Responsividade para telemóveis */
    @media (max-width: 768px) {
        .time-box {
            padding: 10px;
            margin: 5px;
            min-width: 60px;
        }

        .time-box span {
            font-size: 1.5rem;
        }

        .hero-text h1 {
            font-size: 2.5rem;
        }
    }


    /* Página Principal */


    /* Navbar */
    .navbar {
        background-color: rgba(0, 0, 0, 0.95) !important;
        padding: 1rem 0;
        transition: all 0.3s ease;
    }

    .navbar-brand img {
        height: 70px;
    }

    .navbar-nav .nav-link {
        color: var(--light-text) !important;
        font-weight: 500;
        margin: 0 1rem;
        transition: color 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        color: var(--primary-blue) !important;
    }

    /* Hero Section */
    .hero-section {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: url(../images/bg.png);
        background-size: cover;
        background-position: top;
    }

    .hero-content {
        text-align: right;
        z-index: 2;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        margin-right: 10%;
    }

    .hero-content .unique {
        color: var(--light-text);
    }

    .hero-content .performance {
        color: var(--primary-blue);
        font-size: 4rem;
    }

    .hero-content .tambem {
        color: var(--light-text);
    }

    .btn-primary-custom {
        background-color: var(--primary-blue);
        border: 2px solid var(--primary-white);
        color: var(--light-text);
        padding: 1% 10%;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        margin-top: 2rem;
    }

    .btn-primary-custom:hover {
        background-color: transparent;
        border: 2px solid var(--primary-white);
        color: var(--primary-blue);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 255, 0.3);
    }

    @media (max-width: 567px) {
        .hero-content .performance {
            color: var(--primary-blue);
            font-size: 3rem;
        }
    }

    /* Section Titles */
    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
    }

    .section-title .blue {
        color: var(--primary-blue);
    }

    /* Pilares Section */
    .pilares-section {
        padding: 5rem 0;
    }

    .pilares::after {
        content: '';
        display: block;
        width: 123px;
        height: 4px;
        background-color: var(--primary-blue);
        margin: 1rem auto;
        position: relative;
        left: -27px;
    }

    .pilar-card {
        text-align: center;
        padding: 2rem;
        transition: transform 0.3s ease;
    }

    .pilar-card:hover {
        transform: translateY(-10px);
    }

    .pilar-icon {
        font-size: 3rem;
        color: var(--primary-blue);
        margin-bottom: 1rem;
    }

    .pilar-card h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .pilar-card p {
        font-size: 1rem;
        color: var(--light-text)
    }

    /* Por que SE Section */
    .porque-section {
        padding: 5rem 0;
        /* background-color: #0a0a0a; */
    }

    .porque-se::after {
        content: '';
        display: block;
        width: 142px;
        height: 4px;
        background-color: var(--primary-blue);
        margin: 1rem auto;
        position: relative;
        left: -36px;
    }

    .porque-image-container {
        position: relative;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .porque-main-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .porque-card {
        background-color: transparent;
        border: none;
        padding: 2rem;
        text-align: center;
        height: 100%;
        transition: all 0.3s ease;
    }

    /* Hover effects */
    .porque-card:hover .porque-icon {
        transform: scale(1.1);
    }

    .porque-card:hover .porque-icon-img, .porque-main-image {
        filter: brightness(1.2) drop-shadow(0 0 15px rgba(0, 0, 255, 0.5));
    }

    .porque-main-image:hover {
        transition: all 0.3s ease;
    }

    .porque-icon {
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 150'%3E%3Cpath d='M51.74%203.51c69.53,0%2053.53,-5.65%2084.41,44.95%2013.68,22.42%205.13,31.45%20-11.34,58.84%20-18.83,31.34%20-17,25.56%20-76.3,25.56%20-16.02,0%20-23.61,-18.17%20-29.02,-27.57%20-22.03,-38.26%20-24.36,-33.67%201.22,-76.22%207.36,-12.24%2011.96,-25.56%2031.03,-25.56z' fill='none' stroke='%23eef2ff' stroke-width='1.5'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .porque-icon i, .porque-icon img {
        font-size: 40px;
        color: #0029FF;
        z-index: 2;
        position: relative;
        left: -5px;
        top: -4px;
    }

    .porque-card h3 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 1rem;
        margin-top: 1rem;
        color: var(--light-text);
    }

    .porque-card p {
        font-size: 0.95rem;
        color: var(--light-text);
        line-height: 1.6;
        margin: 0;
    }

    /* Responsivo */
    @media (max-width: 767px) {

        .porque-icon, .porque-icon-img {
            width: 140px;
            height: 110px;
        }

        .porque-card {
            padding: 1.5rem;
        }
    }

    /* Método Z14 Section */
    .metodo-section {
        padding: 5rem 0;
        /* background-color: var(--dark-bg); */
        position: relative;
    }

    .metodo-img {
        object-fit: contain;
        transition: all 0.3s ease;
    }

    .metodo-logo {
        text-align: center;
        margin-bottom: 3rem;
    }

    .metodo-logo h2 {
        font-size: 2rem;
        font-style: italic;
    }

    .metodo-step {
        text-align: center;
        padding: 2rem;
        position: relative;
    }

    /* Linha conectora entre os hexágonos */
    .metodo-step::after {
        content: '';
        position: absolute;
        top: 112px;
        left: calc(50% + 70px);
        width: calc(100% - 120px);
        height: 2px;
        background: rgb(255 255 255 / 59%);
        z-index: 0;
    }

    /* Remove a linha do último item */
    .col-md-3:last-child .metodo-step::after {
        display: none;
    }

    .metodo-icon {
        width: 160px;
        height: 160px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 150'%3E%3Cpath d='M51.74%203.51c69.53,0%2053.53,-5.65%2084.41,44.95%2013.68,22.42%205.13,31.45%20-11.34,58.84%20-18.83,31.34%20-17,25.56%20-76.3,25.56%20-16.02,0%20-23.61,-18.17%20-29.02,-27.57%20-22.03,-38.26%20-24.36,-33.67%201.22,-76.22%207.36,-12.24%2011.96,-25.56%2031.03,-25.56z' fill='none' stroke='%23eef2ff' stroke-width='1.5'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        margin: 7px 47px 0.6rem;
        position: relative;
        z-index: 1;
    }

    .metodo-icon-i i {
        font-size: 55px;
        color: #0029FF;
        position: relative;
        left: -5px;
        top: -2px;
    }

    .metodo-icon i, .metodo-icon img {
        font-size: 55px;
        color: #0029FF;
        z-index: 2;
        position: relative;
        left: -5px;
        top: -4px;
    }

    .metodo-step h4 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--light-text);
    }

    .metodo-step p {
        font-size: 1rem;
        color: var(--light-text);
        line-height: 1.6;
    }

    .resultado-box {
        display: inline-flex;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 3rem;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 20px;
        text-align: center;
        margin-top: 3rem;
        background: rgba(0, 0, 255, 0.05);
        transition: all 0.3s ease;
    }

    .resultado-box:hover {
        border-color: var(--primary-blue);
        box-shadow: 0 10px 30px rgba(0, 0, 255, 0.3);
    }

    .metodo-resultado-img {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
    }

    .metodo-resultado-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .metodo-resultado-texto {
        text-align: left;
    }

    .metodo-resultado-texto h3 {
        margin-bottom: 0.5rem;
        font-size: 1.5rem;
    }

    .metodo-resultado-texto p {
        margin-bottom: 0;
        color: var(--light-text);
    }

    /* Responsivo */
    @media (max-width: 991px) {
        .metodo-step::after {
            display: none;
        }

        .metodo-icon {
            width: 120px;
            height: 120px;
        }

        .resultado-box {
            width: auto;
            max-width: 90%;
            flex-direction: column;
            text-align: center;
        }

        .metodo-resultado-texto {
            text-align: center;
        }
    }

    @media (max-width: 767px) {
        .metodo-section {
            padding: 3rem 0;
        }

        .metodo-step {
            padding: 1.5rem 1rem;
        }

        .metodo-icon {
            width: 150px;
            height: 150px;
            margin-bottom: 0.5rem;
        }

        .metodo-step h4 {
            font-size: 1.2rem;
        }

        .metodo-step p {
            font-size: 0.9rem;
        }

        .resultado-box {
            padding: 1.5rem;
            margin-top: 2rem;
        }

        .metodo-resultado-img {
            width: 50px;
            height: 50px;
        }
    }

    /* SE Lab & Recovery Zone */
    .feature-titulo::after {
        content: '';
        display: block;
        width: 280px;
        height: 4px;
        background-color: var(--primary-blue);
        margin: 1rem auto;
        position: relative;
        left: -192px;
    }

    .feature-section {
        padding: 5rem 0;
    }

    /* .feature-section:nth-child(even) {
        background-color: #0a0a0a;
    } */

    .feature-content {
        display: flex;
        align-items: center;
        gap: 3rem;
    }

    .feature-text {
        text-align: justify;
    }

    .feature-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .feature-logo {
        text-align: left;
        margin-bottom: 3rem;
    }

    .feature-img {
        object-fit: contain;
        transition: all 0.3s ease;
    }

    .feature-text .brand {
        font-size: 2.5rem;
        font-weight: 900;
        color: var(--primary-blue);
    }

    @media (max-width: 767px) {
        .feature-titulo::after {
            left: 0px;
        }

        .feature-logo {
            text-align: center;
        }
    }

    /* Recovery Zone Section */
    .recovery-section {
        padding: 5rem 0;
    }

    .recovery-logo {
        text-align: right;
        margin-bottom: 3rem;
        margin-right: 5%;
    }

    .recovery-logo-image {
        max-width: 300px;
        height: auto;
    }

    .recovery-image {
        border-radius: 0;
        max-width: 100%;
    }

    .feature-text h3 {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .feature-text h4 {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--light-text);
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .feature-text h5 {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--light-text);
        margin-bottom: 0.8rem;
    }

    .recovery-text h4 i {
        font-size: 25px;
        color: #0029FF;
        position: relative;
        left: -2px;
        top: 2px;
    }

    .recovery-list {
        list-style: none;
        padding-left: 0;
        margin-top: 1rem;
    }

    .recovery-list li {
        padding-left: 1.5rem;
        margin-bottom: 0.8rem;
        position: relative;
        color: var(--light-text);
        line-height: 1.6;
    }

    .recovery-list li::before {
        content: '•';
        position: absolute;
        left: 0;
        color: var(--light-text);
        font-size: 1.5rem;
        line-height: 1;
    }

    .recovery-item {
        margin-bottom: 1.5rem;
    }

    .recovery-sublist {
        list-style: none;
        padding-left: 0;
        margin-top: 0.5rem;
    }

    .recovery-sublist li {
        padding-left: 1.5rem;
        margin-bottom: 0.5rem;
        position: relative;
        color: var(--light-text);
        line-height: 1.6;
        font-size: 0.95rem;
    }

    .recovery-sublist li::before {
        content: '*';
        position: absolute;
        left: 0;
        color: var(--primary-blue);
        font-weight: bold;
    }

    /* Responsivo */
    @media (max-width: 991px) {
        .recovery-logo {
            max-width: 250px;
        }

        .feature-text h3 {
            font-size: 1.6rem;
        }
    }

    @media (max-width: 767px) {
        .recovery-logo {
            max-width: 200px;
            margin-bottom: 1.5rem;
        }

        .feature-text h3 {
            font-size: 1.4rem;
        }

        .feature-text h4 {
            font-size: 1.2rem;
            margin-top: 1.5rem;
        }
    }

    /* Video Section */
    .video-section {
        padding: 5rem 0;
        background: linear-gradient(87deg, #030bf7, #00002e);
        text-align: center;
    }

    .video-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .video-wrapper {
        position: relative;
        padding-bottom: 56.25%;
        /* Proporção 16:9 */
        height: 0;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }

    /* Responsivo */
    @media (max-width: 1200px) {
        .video-container {
            max-width: 960px;
        }
    }

    @media (max-width: 991px) {
        .video-section {
            padding: 4rem 0;
        }

        .video-container {
            max-width: 720px;
        }
    }

    @media (max-width: 767px) {
        .video-section {
            padding: 3rem 0;
        }

        .video-wrapper {
            border-radius: 15px;
        }

        .video-wrapper iframe {
            border-radius: 15px;
        }
    }

    @media (max-width: 576px) {
        .video-section {
            padding: 2rem 0;
        }

        .video-container {
            padding: 0 0.5rem;
        }

        .video-wrapper {
            border-radius: 10px;
        }

        .video-wrapper iframe {
            border-radius: 10px;
        }
    }

    /* Head Coach Section */
    .coach-section {
        padding: 5rem 0;
        /* background-color: var(--dark-bg); */
    }

    .coach-titulo::after {
        content: '';
        display: block;
        width: 98px;
        height: 4px;
        background-color: var(--primary-blue);
        margin: 1rem auto;
        position: relative;
        left: -64px;
    }





    /* Planos Section */
    /* --- ADICIONE ESTAS REGRAS AO SEU CSS --- */

    /* Wrapper para o grupo (Título + Cards) */
    .plan-group-wrapper {
        text-align: center;
        width: 100%;
    }

    /* Título do Grupo (o badge "Essencial", "Performance", etc.) */
    .plan-group-title {
        color: var(--light-text);
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        display: inline-block;
        margin-bottom: 1.5rem;
        font-weight: 600;
        font-size: 1.2rem;
    }

    .plan-group-title.essencial {
        background-color: #1d3557;
        color: var(--light-text);
    }

    .plan-group-title.performance {
        background-color: var(--primary-blue);
        color: var(--light-text);
    }

    .plan-group-title.triathlon {
        color: var(--dark-bg);
    }

    .plan-icon {
        width: 40px;
        height: auto;
    }


    @media (min-width: 992px) {
        #performance-column {
            position: relative;
            top: 150px;
        }
    }

    .plan-features li {
        padding: 0.4rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--light-text);
        font-size: 13px;
        line-height: 1.4;
    }

    .planos-section {
        padding: 5rem 0;
        background-color: var(--dark-bg);
        color: var(--light-text);
    }

    .section-title {
        color: var(--light-text);
        text-align: center;
        margin-bottom: 3rem;
        font-weight: 700;
    }

    .plan-group-title {
        color: var(--light-text);
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        display: inline-block;
        margin-bottom: 1.5rem;
        font-weight: 600;
        font-size: 1.2rem;
    }

    .plan-group-title.essencial, .plan-group-title.performance, .plan-group-title.triathlon {
        background-color: var(--primary-blue);
        color: var(--light-text);
        padding: 1% 10%;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        text-transform: uppercase;
        margin-top: 2rem;
    }

    .plan-group-title.relax {
        background-color: var(--group-relax-bg);
        color: var(--light-text);
    }


    /* ---- Card de Plano ----  */
    .plan-card {
        background-color: var(--dark-bg);
        border: 2px solid var(--light-blue-border);
        border-radius: 20px;
        padding: 7%;
        margin-bottom: 0;
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .plan-section {
        padding: 5rem 0;
        /* background-color: var(--dark-bg); */
    }

    .plan-titulo::after {
        content: '';
        display: block;
        width: 120px;
        height: 4px;
        background-color: var(--primary-blue);
        margin: 1rem auto;
        position: relative;
        left: 136px;
    }

    /* NOVO: Ícone dentro do card */
    .plan-card-icon {
        font-size: 2.5rem;
        color: var(--card-icon-color);
        margin-bottom: 2%;
    }

    .plan-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--light-text);
        /* Texto branco */
    }

    /* Card em Destaque (Fundo azul) */
    .plan-card.featured {
        background-color: var(--card-featured-bg);
        border-color: var(--card-featured-bg);
        color: var(--light-text);
    }

    .plan-card.featured h3 {
        color: var(--light-text);
    }

    .plan-card.featured .plan-card-icon {
        color: var(--card-featured-icon-color);
    }


    .plan-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 255, 0.3);
    }

    .plan-price {
        font-size: 2.2rem;
        font-weight: 900;
        margin: 1% 0;
        color: var(--light-text);
    }

    .plan-card.featured .plan-price {
        color: var(--light-text);
        /* Cor do preço no card em destaque */
    }

    .plan-features {
        list-style: none;
        padding: 0;
        margin: 1% 0;
        text-align: left;
        flex-grow: 1;
    }

    .plan-features li {
        padding: 1% 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--light-text);
        font-size: 12px;
    }

    .plan-card.featured .plan-features li {
        color: var(--light-text);
    }

    .plan-features li:before {
        content: '✓';
        color: var(--light-blue-border);
        font-weight: bold;
        margin-right: 0.5rem;
    }

    .plan-card.featured .btn-primary-custom {
        background-color: var(--btn-featured-bg);
        color: var(--primary-blue);
        border-color: var(--light-text);
    }

    .plan-card.featured .btn-primary-custom:hover {
        background-color: var(--dark-bg);
        border-color: var(--light-text);
        color: var(--light-text);
    }


    /* Depoimentos Section */
    .depoimentos-section {
        padding: 5rem 0 6rem;
        position: relative;
    }

    .depoimentos-titulo::after {
        content: '';
        display: block;
        width: 110px;
        height: 4px;
        background-color: var(--primary-blue);
        margin: 1rem auto;
        position: relative;
        left: -71px;
    }

    .carousel-inner {
        padding: 0 15px;
    }

    .depoimento-card {
        background-color: transparent;
        border: none;
        border-radius: 20px;
        padding: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        transition: all 0.3s ease;
    }

    .depoimento-content {
        background-color: rgba(0, 0, 0, 0.5);
        border: 1px solid var(--primary-blue);
        border-bottom: 4px solid var(--primary-blue);
        padding: 3.5rem 1.5rem 2rem;
        width: 100%;
        margin-top: 50px;
        transition: all 0.3s ease;
        min-height: 515px;
        display: flex;
        flex-direction: column;
    }

    .depoimento-card:hover .depoimento-content {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 255, 0.3);
        border-color: var(--primary-blue);
        border-bottom-color: var(--primary-blue);
    }

    .depoimento-avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        border: 4px solid var(--primary-blue);
        background-size: cover !important;
        background-position: center !important;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .depoimento-card h4 {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--primary-blue);
        margin-bottom: 1.2rem;
        text-align: center;
        flex-shrink: 0;
    }

    .depoimento-card p {
        font-size: 0.95rem;
        line-height: 1.7;
        color: var(--light-text);
        text-align: left;
        flex-grow: 1;
        overflow-y: auto;
        padding-right: 5px;
    }

    /* Scrollbar personalizada */
    .depoimento-card p::-webkit-scrollbar {
        width: 6px;
    }

    .depoimento-card p::-webkit-scrollbar-track {
        background: rgba(0, 0, 255, 0.1);
        border-radius: 10px;
    }

    .depoimento-card p::-webkit-scrollbar-thumb {
        background: var(--primary-blue);
        border-radius: 10px;
    }

    .depoimento-card p::-webkit-scrollbar-thumb:hover {
        background: var(--primary-blue);
    }

    /* Carrossel */
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        background-color: rgba(0, 0, 255, 0.3);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.8;
        transition: all 0.3s ease;
    }

    .carousel-control-prev {
        left: -60px;
    }

    .carousel-control-next {
        right: -60px;
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        background-color: var(--primary-blue);
        opacity: 1;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 25px;
        height: 25px;
    }

    .carousel-indicators {
        bottom: -50px;
    }

    .carousel-indicators button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(0, 0, 255, 0.3);
        border: 2px solid var(--primary-blue);
        margin: 0 5px;
    }

    .carousel-indicators button.active {
        background-color: var(--primary-blue);
    }

    /* Responsivo */
    @media (max-width: 1400px) {
        .carousel-control-prev {
            left: -40px;
        }

        .carousel-control-next {
            right: -40px;
        }
    }

    @media (max-width: 1199px) {
        .depoimento-content {
            min-height: 592px;
            padding: 3.5rem 1.3rem 2rem;
        }
    }

    @media (max-width: 991px) {
        .carousel-control-prev {
            left: 10px;
            z-index: 10;
        }

        .carousel-control-next {
            right: 10px;
            z-index: 10;
        }

        .depoimento-content {
            min-height: 335px;
        }

        .depoimento-avatar {
            width: 90px;
            height: 90px;
        }
    }

    /* TABLET E MOBILE - 1 DEPOIMENTO POR VEZ */
    @media (max-width: 767px) {
        .depoimentos-section {
            padding: 3rem 0 5rem;
        }

        .carousel-inner {
            padding: 0 10px;
        }

        .depoimento-content {
            min-height: 355px;
            padding: 3rem 1.5rem 1.5rem;
            margin-top: 45px;
        }

        .depoimento-avatar {
            width: 90px;
            height: 90px;
        }

        .depoimento-card h4 {
            font-size: 1.2rem;
        }

        .depoimento-card p {
            font-size: 0.9rem;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 40px;
            height: 40px;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 20px;
            height: 20px;
        }
    }

    @media (max-width: 576px) {
        .depoimento-content {
            min-height: 485px;
            padding: 2.8rem 1.2rem 1.5rem;
            margin-top: 40px;
        }

        .depoimento-avatar {
            width: 80px;
            height: 80px;
        }

        .depoimento-card h4 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .depoimento-card p {
            font-size: 0.85rem;
            line-height: 1.6;
        }
    }

    /* Footer */
    footer {
        background-color: var(--dark-bg);
        padding: 4rem 0 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-logo {
        height: 135px;
        width: auto;
    }

    .footer-brand {
        margin-bottom: 1rem;
    }

    .footer-tagline {
        font-size: 1rem;
        font-weight: 700;
        font-style: italic;
        color: var(--primary-blue);
        line-height: 1.4;
        margin-bottom: 0;
        letter-spacing: 0.5px;
    }

    .footer-links {
        color: var(--light-text);
    }

    .footer-links h5 {
        color: var(--light-text);
        font-size: 1.1rem;
        font-weight: 700;
        text-transform: uppercase;
        position: relative;
        padding-bottom: 0.5rem;
    }

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

    .footer-links p {
        color: var(--light-text);
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 0.8rem;
    }

    .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links ul li a {
        color: var(--light-text);
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .footer-links ul li a:hover {
        color: var(--primary-blue);
        transform: translateX(5px);
    }

    /* Contato */
    .footer-contact p {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .footer-contact p i {
        color: var(--primary-blue);
        font-size: 1.1rem;
        min-width: 20px;
    }

    .footer-contact a {
        color: var(--light-text);
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    /* Social Icons */
    .social-icons {
        gap: 1rem;
        font-size: 2rem !important;
    }

    .social-icons a {
        width: 55px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-blue);
        font-size: 1.2rem;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .social-icons a:hover {
        background-color: var(--primary-blue);
        color: var(--light-text);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 255, 0.4);
    }

    .footer-contact .social-icons i {
        color: var(--primary-blue);
        font-size: 2rem;
        min-width: 20px;
    }

    .footer-contact .social-icons a:hover {
        background-color: transparent;
        color: var(--light-text) !important;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 255, 0.4);
    }

    /* Copyright */
    .footer-divider {
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin: 2rem 0 1.5rem;
    }

    .footer-copyright {
        text-align: center;
        color: #888;
        font-size: 0.9rem;
        margin: 0;
        padding: 0;
    }

    /* Responsivo */
    @media (max-width: 991px) {
        .footer-logo {
            height: 70px;
        }

        footer {
            padding: 3rem 0 1.5rem;
        }
    }

    @media (max-width: 767px) {
        .footer-logo {
            height: 60px;
        }

        footer {
            padding: 2.5rem 0 1.5rem;
        }

        .footer-brand,
        .footer-links {
            text-align: center;
            margin-bottom: 2rem;
        }

        .footer-links h5::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .footer-links ul li a {
            display: inline-block;
        }

        .footer-contact p {
            justify-content: center;
        }

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

        .footer-copyright {
            font-size: 0.85rem;
            padding: 0 1rem;
        }
    }

    @media (max-width: 576px) {
        .footer-logo {
            height: 100px;
        }

        .footer-tagline {
            font-size: 0.9rem;
        }

        .footer-links h5 {
            font-size: 1rem;
        }

        .footer-links p,
        .footer-links ul li a {
            font-size: 0.9rem;
        }

        .footer-copyright {
            font-size: 0.8rem;
        }
    }