/**
 * Autor: Samuel Lima
 * Versão: 1.0
 * Sistema: SoueProf
 *
 * Descrição:
 * [Desenvolvimento de Sistemas Online.]
 *
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700&display=swap');
:root {
    /* Primary Colors */
    --color-primaria: #26272c;
    --color-laranja: #ed6c1c;
    --color-laranja-hover: #ff7b24;
    --color-verde: #2d5921;
    --bg-verde: #dcffd0;
    --color-branca: #FFFFFF;
    --color-azul: #2400b2;
    --color-cinza: #666666;
    --color-cinza-claro: #f9fafc;
    --font-primaria: "Manrope", sans-serif;
    
}
/* Cores */
.text-primaria{
  color: var(--color-primaria);
}
.text-laranja{
  color: var(--color-laranja);
} 
.text-branca{
  color: var(--color-branca);
}
.text-azul{
  color: var(--color-azul);
}
.text-cinza{
  color: var(--color-cinza);
}


/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}
section{
  margin:100px 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Manrope", sans-serif;
    background-image: url('../img/bg/bg-topo.png');
    background-repeat: repeat;
    background-color: var(--color-primaria);
    color: var(--color-primaria);
    overflow-x: hidden;
}

.pattern-laranja-superior {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.pattern-laranja-superior::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 478px;
    background-image: url('../img/bg/bg-laranja-2.png');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    z-index: 0;
}

.wrapper {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.wrapper-full {
    width: 100%;
}

/* Menu Desktop */
 
.header-soueprof .navbar {
    position: relative;
    width: 100%;
    background:transparent;
    padding-top:.75rem;
    padding-bottom:.75rem;
    color: var(--color-branca);
    border-radius:0;
    box-shadow:none;
    border:none;
}
  
@media (min-width:768px) {
    .header-soueprof .navbar {
      padding-top:1rem;
    }
}

.header-soueprof .navbar .navbar-brand {
    display: flex;
    justify-content: flex-start;
    width: auto;
}

.header-soueprof .navbar .navbar-brand .brand-content-desktop {
    display: block;
}

.header-soueprof .navbar .navbar-brand .brand-content-mobile {
    display: none;
}

.header-soueprof .navbar .navbar-brand .logo-desktop {
    height: 30px;
    width: auto;
}

.header-soueprof .navbar .navbar-brand .logo-text {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-branca);
}

.header-soueprof .navbar .navbar-brand .logo-nome {
    height: 25px;
    width: auto;
  }
  
.header-soueprof .navbar .navbar-brand:hover {
    color: var(--color-laranja);
}

.header-soueprof .navbar .navbar-nav .nav-link:hover {
    color: var(--color-laranja); /* Cor laranja ao passar o mouse */
    transition: color 0.3s ease; /* Transição suave */
}
.header-soueprof .navbar .navbar-collapse {
    border-top:1px solid rgba(255,255,255,0.3);
    margin-top:.5rem;
}
  
@media (min-width:768px) {
    .header-soueprof .navbar .navbar-collapse {
      border-color:transparent;
      margin:0;
    }
}
  
.header-soueprof .navbar .navbar-collapse span .login {
    color:#d9d9d9;
    margin-right:.5rem;
    text-decoration:none;
}
  
.header-soueprof .navbar .navbar-collapse span .login:hover {
    color: var(--color-laranja);
}
  
.header-soueprof .navbar .navbar-toggler {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border-color:rgba(255,255,255,0.3);
}
  
.header-soueprof .navbar .navbar-toggler:hover, .header-soueprof .navbar-toggler:focus {
    background:none;
}
  
.header-soueprof .navbar .navbar-nav a.active, .header-soueprof .navbar .navbar-nav > .show .dropdown-item {
    background:none;
    box-shadow:none;
}
  
@media (min-width: 768px) {
    .header-soueprof .navbar-nav .nav-link {
      padding-left:.7rem;
      padding-right:.7rem;
    }
}
  
@media (min-width: 992px) {
    .header-soueprof .navbar-nav .nav-link {
      padding-left:1.2rem;
      padding-right:1.2rem;
    }
}
  
.header-soueprof .navbar .navbar-nav > li > .dropdown-menu {
    margin-top:-5px;
    box-shadow:0 4px 8px rgba(0,0,0,.1);
    background-color:#fff;
    border-radius:2px;
}
  
.header-soueprof .navbar .dropdown-menu .dropdown-item:focus, .header-soueprof .navbar .dropdown-menu .dropdown-item {
    line-height:2;
    color:#37434d;
}
  
.header-soueprof .navbar .dropdown-menu .dropdown-item:focus, .header-soueprof .navbar .dropdown-menu .dropdown-item:hover {
    background:#ebeff1;
}
  
.header-soueprof .action-button, .header-soueprof .action-button:not(.disabled):active {
    border:1px solid rgba(255,255,255,0.7);
    border-radius:40px;
    color: var(--color-primaria);
    box-shadow:none;
    text-shadow:none;
    font-size: 14px;
    padding:15px 35px;
    background: var(--color-branca);
    transition:background-color 0.25s;
    outline:none;
}
  
.header-soueprof .action-button:hover {
    background: var(--color-laranja);
    color: var(--color-branca);
}
  
.header-soueprof .navbar .form-inline label {
    color:#d9d9d9;
}
  
.header-soueprof .navbar .form-inline .search-field {
    display:inline-block;
    width:80%;
    background:none;
    border:none;
    border-bottom:1px solid transparent;
    border-radius:0;
    color:#ccc;
    box-shadow:none;
    color:inherit;
    transition:border-bottom-color 0.3s;
}
  
.header-soueprof .navbar .form-inline .search-field:focus {
    border-bottom:1px solid #ccc;
}

.hero {
    padding: 80px 0;
    width: 100%;
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 0.9;
    font-weight: 700;
    color: var(--color-branca);
    margin-bottom: 3.5rem;
    width: 100%;
    text-align: center;
}

.hero h1 .small-title {
    font-size: 3.5rem;
    display: inline-block;
    margin-bottom: -10px;
}

.hero h1 .highlight {
    color: var(--color-laranja);
}

@media (max-width: 768px) {
    .hero {
        padding: 20px 15px;
        overflow-x: hidden;
    }
  
.hero h1 {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 2rem;
        padding: 0;
    }
    .hero h1 .small-title {
        font-size: 2rem;
        margin: 0;
        line-height: 1;
        display: inline;
    }
    .hero p {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 20px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero h1 .small-title {
        font-size: 1.8rem;
    }
  }
  
.hero p {
    color: var(--color-branca);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.action-button-hero {
    background-color: var(--color-laranja) !important;
    color: var(--color-branca) !important;
    border: none !important;
    padding: 15px 60px !important;
    font-size: 1.25rem !important;
    border-radius: 50px !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.action-button-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(237, 108, 28, 0.3);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    margin-top: 0.1rem;
}

.hero-cms-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        margin-top: 0.1rem;
        padding: 0 10px;
    }
}

.bg-fluxo {
    position: relative;
    background-image: url('../img/bg/bg.png'), linear-gradient(to right, var(--color-cinza-claro), var(--color-cinza-claro));
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 100px 0;
    border-radius: 50px;
    margin: 0 15px;
}

@media (max-width: 768px) {
    .bg-fluxo {
        background-image: none;
        background: var(--color-cinza-claro);
        padding: 50px 0;
        border-radius: 30px;
        margin-top:50px;
    }
}

.bg-fluxo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    z-index: 1;
}

.bg-fluxo .container {
    position: relative;
    z-index: 2;
}

.bg-fluxo .titulo-fluxo{
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-primaria);
  margin-bottom: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}
.bg-fluxo .subtitulo-fluxo{
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-cinza);
  margin-bottom: 2rem;
  text-align: center;
}
.seta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.seta-wrapper .texto {
    color: var(--color-cinza);
    font-size: 1.4rem;
    font-weight: 300;
}
.seta-wrapper .seta {
    width: 11px;
    height: auto;
}

.titulo-direcao {
    font-size: 0.9rem;
    color: var(--color-cinza);
    text-align: left;
    margin-top: 3rem;
    font-weight: 300;
}

.boxes-direcao {
    margin-top: 0.2rem;
}

.box-direcao {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(102, 102, 102, 0.4);
}

.box-direcao .icon-wrapper,
.box-direcao h3 {
    position: relative;
    z-index: 1;
}

.box-direcao:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.box-direcao .icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: left;
    margin-bottom: 0.8rem;
}

.box-direcao .icon-wrapper img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.box-direcao h3 {
    position: relative;
    font-size: 1.2rem;
    color: var(--color-primaria);
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .boxes-direcao .col-md-4:not(:last-child) {
        margin-bottom: 1.5rem;
    }
}

.funcionalidades {
    padding: 100px 0;
    position: relative;
}

.funcionalidades-content {
    position: sticky;
    top: 100px;
}

.funcionalidades .title-section {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-branca);
}

.funcionalidades .description-section {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-branca);
    opacity: 0.8;
}

.timeline {
    position: relative;
    padding: 20px 0;
    margin-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-dot {
    position: absolute;
    left: -9px;
    top: 30px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #FFFFFF;
    transition: background-color 0.5s ease;
    z-index: 2;
}

.timeline-content {
    margin-left: 40px;
}

.timeline-box {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.5s ease;
    opacity: 0.7;
    transform: translateX(20px);
}

.timeline-box.active {
    background: #ED6C1C;
    opacity: 1;
    transform: translateX(0);
}

.timeline-box.active h3,
.timeline-box.active p {
    color: #FFFFFF;
}

.timeline-box .icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    position: relative;
}

.timeline-box .icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease;
}

.timeline-box .icon-box .icon-active {
    opacity: 0;
}

.timeline-box .icon-box .icon-normal {
    opacity: 1;
}

.timeline-box.active .icon-box .icon-active {
    opacity: 1;
}

.timeline-box.active .icon-box .icon-normal {
    opacity: 0;
}

.timeline-box h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-primaria);
}

.timeline-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-cinza);
    margin: 0;
}

@media (max-width: 991px) {
    .funcionalidades-content {
        position: relative;
        top: 0;
        margin-bottom: 50px;
    }
    
    .funcionalidades .title-section {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
.demonstracao {
    margin-bottom:70px !important;

}
}

.demonstracao {
    padding: 0px 0;
    background-color: var(--color-primaria);
    position: relative;
}

.title-demo {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-branca);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.subtitle-demo {
    font-size: 1.2rem;
    color: var(--color-branca);
    opacity: 0.8;
    margin-bottom: 4rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .title-demo {
        font-size: 3rem;
        text-align: center;
    }
    
    .subtitle-demo {
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .title-demo {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .subtitle-demo {
        text-align: center;
        font-size: 1rem;
        margin-bottom: 2.5rem;
        padding: 0 15px;
    }
}

.recursos-lista {
    position: relative;
}

.recurso-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.recurso-item .icon-wrapper {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    margin-right: 1.5rem;
    background-color: var(--color-laranja);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recurso-item .icon-wrapper img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.recurso-content {
    flex-grow: 1;
}

.recurso-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-branca);
    margin-bottom: 0.5rem;
}

.recurso-content p {
    font-size: 1rem;
    color: var(--color-branca);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

.linha-pontilhada {
    position: absolute;
    left: 35px;
    top: 85px;
    bottom: -45px;
    width: 2px;
    background-image: linear-gradient(var(--color-laranja) 33%, rgba(255,255,255,0) 0%);
    background-position: right;
    background-size: 2px 15px;
    background-repeat: repeat-y;
}

.recurso-item:last-child .linha-pontilhada {
    display: none;
}

@media (max-width: 991px) {
    .recurso-item {
        margin-bottom: 2.5rem;
    }
    
    .recurso-item .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .recurso-content h3 {
        font-size: 1.3rem;
    }
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--color-laranja);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 700px;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    height: 100%;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--color-laranja);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(237, 108, 28, 0.3);
}

.play-button img {
    width: 30px;
    height: 30px;
    border-radius: 0;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(237, 108, 28, 0.4);
}

#videoModal .modal-content {
    background-color: var(--color-primaria);
    border: none;
}

#videoModal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

#videoModal .modal-title {
    color: var(--color-branca);
    font-weight: 600;
}

#videoModal .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

#videoModal .modal-body {
    padding: 0;
}

@media (max-width: 991px) {
    .video-wrapper {
        height: 500px;
        margin-top: 3rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 768px) {
    .video-wrapper {
        height: 400px;
    }
}
.bg-planos{
  background-color: var(--color-branca);
  padding: 100px 0;
  border-radius: 30px;
  margin: 0 15px;
}
.bg-planos .title-section{
  color: var(--color-primaria);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}
.bg-planos .description-section{
  color: var(--color-azul);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.bg-planos {
    background-color: var(--color-branca);
    padding: 100px 0;
    border-radius: 30px;
    margin: 0 15px;
}

.planos-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 50px;
}

.toggle-wrapper {
    background: #f0f0f0;
    border-radius: 50px;
    padding: 5px;
    position: relative;
    display: inline-flex;
    min-width: 400px;
}

.toggle-btn {
    border: none;
    background: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--color-primaria);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: center;
}

.toggle-bg {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(50% - 5px);
    height: calc(100% - 10px);
    background: var(--color-branca);
    border-radius: 50px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.toggle-btn.active {
    background: none;
}

.toggle-btn[data-plano="anual"].active ~ .toggle-bg {
    transform: translateX(calc(100% + 5px));
}

.economia {
    background: #DCFFD0;
    color: #2D5921;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    position: absolute;
    top: -15px;
    right: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.toggle-btn[data-plano="anual"].active .economia {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .toggle-wrapper {
        min-width: 300px;
    }

    .toggle-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .economia {
        font-size: 0.75rem;
        padding: 3px 8px;
        top: -12px;
        right: 5px;
    }
}

.planos-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.plano-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
    padding: 24px 18px 18px 18px;
    width: 290px;
    min-width: 220px;
    max-width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    transition: box-shadow 0.2s, transform 0.2s;
}

.plano-card.destaque {
    border: 2px solid #ED6C1C;
    box-shadow: 0 8px 32px 0 rgba(237,108,28,0.10);
    transform: scale(1.04);
    z-index: 2;
}

.destaque-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #ED6C1C;
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
}

.plano-titulo {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #222;
    font-weight: 700;
}

.plano-descricao {
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.25;
    color: #444;
}

.plano-preco {
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.plano-preco .valor {
    font-size: 2.1rem;
    font-weight: 700;
    color: #222;
}

.plano-preco .periodo {
    font-size: 0.95rem;
    color: #666;
}

.plano-recursos {
    gap: 6px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
}

.recurso-plano {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.recurso-nome {
    font-size: 0.85rem;
    color: #222;
}

.tag-ilimitado {
    font-size: 0.68rem;
    padding: 2px 7px;
    background: #dcffd0;
    color: #2d5921;
    border-radius: 50px;
    font-weight: 500;
    white-space: nowrap;
}

.plano-bonus {
    padding: 7px 10px;
    font-size: 0.92rem;
    margin-bottom: 10px;
    background: #f8f8f8;
    border-radius: 8px;
    color: #ed6c1c;
    font-weight: 500;
    text-align: center;
}



@media (max-width: 1100px) {
    .planos-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .plano-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 30px;
    }
}

.bg-faq {
    padding: 100px 0;
    border-radius: 30px;
    background-color: var(--color-primaria);
    margin: 0 15px;
}

.faq-titulo {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-branca);
    margin-bottom: 3rem;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-primaria);
    border-radius: 20px;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: var(--color-branca);
    font-size: 1.3rem;
    font-weight: 500;
    gap: 20px;
}

.faq-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1rem;
}

.faq-answer p {
    color: var(--color-branca);
    opacity: 0.8;
    font-size: 1.1rem;
    line-height: 1.6;
    padding-bottom: 1.5rem;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

@media (max-width: 768px) {
    .faq-titulo {
        font-size: 2.5rem;
        text-align: center;
    }

    .faq-question {
        font-size: 1.1rem;
        padding: 1.2rem 0;
    }

    .faq-answer p {
        font-size: 1rem;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
    }
}

.footer {
    background-color: var(--color-primaria);
    padding: 60px 0;
    color: var(--color-branca);
    position: relative;
}

.footer-logo {
    max-width: 200px;
}

.footer-contact {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}

.contact-info {
    font-size: 1.1rem;
    color: var(--color-branca);
    opacity: 0.9;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.footer-links .footer-link-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-link {
    color: var(--color-branca);
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--color-laranja);
}

.footer-disclaimer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    color: var(--color-branca);
    opacity: 0.7;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-copyright {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: var(--color-branca);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.back-to-top {
    display: inline-flex;
    margin-left: 30px;
}

.back-to-top-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 42px 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--color-branca);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.back-to-top-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: var(--color-branca);
    text-decoration: none;
}

.back-to-top-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.back-to-top-button:hover .back-to-top-icon {
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .footer-logo {
        margin: 0 auto 30px;
    }

    .footer-contact {
        margin-bottom: 30px;
        justify-content: center;
        align-items: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-links .footer-link-wrapper {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .back-to-top {
        margin-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .footer-links .footer-link-wrapper {
        flex-direction: row;
        gap: 15px;
    }

    .back-to-top {
        margin-top: 15px;
    }
}

.modal-content {
    background: #1E1E1E;
    border-radius: 20px;
    border: none;
    color: var(--color-branca);
}

.modal-logo {
    display: block;
    margin: 0 auto;
    max-width: 150px;
}

.cadastro-form .form-control,
.cadastro-form .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--color-branca);
    padding: 12px 15px;
    font-size: 1rem;
}

.cadastro-form .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--color-branca);
    padding: 12px 15px;
    font-size: 1rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
}

.cadastro-form .form-select option {
    background-color: #1E1E1E;
    color: var(--color-branca);
    padding: 10px;
}

/* Remove a seta padrão no IE */
.cadastro-form .form-select::-ms-expand {
    display: none;
}

.cadastro-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.phone-input-wrapper {
    display: flex;
    gap: 10px;
}

.phone-input-wrapper .country-code {
    width: 120px;
    flex-shrink: 0;
}

.cadastro-form .form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.cadastro-form .form-check-input:checked {
    background-color: var(--color-laranja);
    border-color: var(--color-laranja);
}

.cadastro-form .form-check-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.cadastro-form .btn-primary {
    background: linear-gradient(45deg, #FF6B00, #FF8A00);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cadastro-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.cadastro-form .btn-primary:disabled,
.cadastro-form .btn-primary.disabled {
    background: linear-gradient(45deg, #808080, #9a9a9a);
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
    box-shadow: none;
}

#termosModal {
    background: rgba(0, 0, 0, 0.5);
}

#termosModal .modal-content {
    background: #1E1E1E;
    border: none;
    color: var(--color-branca);
    margin-top: 2rem;
}

#termosModal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

#termosModal .modal-title {
    color: var(--color-branca);
    font-weight: 600;
    font-size: 1.5rem;
}

#termosModal .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

#termosModal .modal-body {
    padding: 1.5rem;
}

#termosModal h6 {
    color: var(--color-laranja);
    font-weight: 600;
    font-size: 1.1rem;
}

#termosModal p {
    color: var(--color-branca);
    opacity: 0.8;
    line-height: 1.6;
}

#termosModal .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
}

#termosModal .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-branca);
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

#termosModal .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-backdrop + .modal-backdrop {
    opacity: 0 !important;
}

.text-laranja {
    color: var(--color-laranja) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-laranja:hover {
    color: var(--color-laranja-hover) !important;
    text-decoration: underline;
}

/* Estilos para o select quando aberto */
.cadastro-form .form-select:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-laranja);
    box-shadow: 0 0 0 0.25rem rgba(237, 108, 28, 0.25);
    color: var(--color-branca);
}

/* Estilos para as opções quando hover */
.cadastro-form .form-select option:hover,
.cadastro-form .form-select option:focus,
.cadastro-form .form-select option:active,
.cadastro-form .form-select option:checked {
    background-color: var(--color-laranja);
    color: var(--color-branca);
}

@media (max-width: 768px) {
    .header-soueprof .navbar .navbar-brand {
        display: flex;
        justify-content: center;
        width: 100%;
        padding-right: 50px;
    }
    
    .header-soueprof .navbar .navbar-brand .brand-content-desktop {
        display: none;
    }

    .header-soueprof .navbar .navbar-brand .brand-content-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 8px;
    }
}

@media (min-width: 769px) {
    .header-soueprof .navbar .navbar-brand .logo-text {
        display: block;
    }
}

.hero-logo-desktop {
    display: none;
}

@media (min-width: 992px) {
    .hero-logo-desktop {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 1rem;
    }

    .hero-logo-desktop span {
        font-size: 18px;
        color: var(--color-branca);
    }

    .hero-logo-desktop img {
        height: 30px;
        width: auto;
    }
}

/* Remover regras conflitantes */
@media (max-width: 768px) {
    .hero-logo-desktop {
        display: none !important;
    }
}

.videos-galeria {
    padding: 100px 0;
    background-color: var(--color-primaria);
}

.title-videos {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-branca);
    margin-bottom: 1rem;
}

.subtitle-videos {
    font-size: 1.1rem;
    color: var(--color-branca);
    opacity: 0.8;
    margin-bottom: 2rem;
}

/* Vídeo Principal */
.video-principal {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-principal .ratio {
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    flex: 1;
    aspect-ratio: 16/9;
}

.video-title-principal {
    color: var(--color-branca);
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Lista de Thumbnails */
.video-list {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.col-lg-8, .col-lg-4 {
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .video-principal, .video-list {
        min-height: 450px;
        max-height: 450px;
    }
    
    .row.mt-4 {
        align-items: stretch;
    }
    
    .row.mt-4 > [class*="col-"] {
        display: flex;
        flex-direction: column;
    }
}

/* Estilização da scrollbar */
.video-list::-webkit-scrollbar {
    width: 6px;
}

.video-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.video-list::-webkit-scrollbar-thumb {
    background: var(--color-laranja);
    border-radius: 3px;
}

.video-thumb-item {
    display: flex;
    gap: 15px;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.video-thumb-item:hover,
.video-thumb-item.active {
    background: rgba(255, 255, 255, 0.1);
}

.thumb-wrapper {
    position: relative;
    width: 120px;
    min-width: 120px;
    height: 68px;
    border-radius: 8px;
    overflow: hidden;
}

.thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumb-item:hover .play-overlay {
    opacity: 1;
}

.play-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.thumb-info {
    flex: 1;
    min-width: 0;
}

.thumb-info h4 {
    color: var(--color-branca);
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.thumb-info .duration {
    color: var(--color-branca);
    opacity: 0.6;
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .video-list {
        max-height: none;
        margin-top: 30px;
    }
    
    .title-videos {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .videos-galeria {
        padding: 60px 0;
    }
    
    .title-videos {
        font-size: 2rem;
    }
    
    .subtitle-videos {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .video-title-principal {
        font-size: 1.2rem;
    }
    
    .thumb-wrapper {
        width: 120px;
        min-width: 120px;
        height: 70px;
    }
    
    .play-icon {
        width: 24px;
        height: 24px;
    }
}

/* Estilos para a página de Termos de Uso */
.termos-uso {
    padding: 0 0;
    background-color: var(--color-primaria);
    min-height: 100vh;
}

.termos-uso .container {
    background-color: var(--color-branca);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.termos-uso h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primaria);
    margin-bottom: 1rem;
    text-align: center;
}

.termos-uso .last-update {
    color: #666666;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.termo-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.termo-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.termo-section h2 {
    color: var(--color-laranja);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.termo-section p {
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.termo-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.termo-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.5;
}

.termo-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--color-laranja);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .termos-uso {
        padding: 30px 15px;
    }

    .termos-uso .container {
        padding: 30px 20px;
    }

    .termos-uso h1 {
        font-size: 2.2rem;
    }

    .termo-section h2 {
        font-size: 1.5rem;
    }

    .termo-section p,
    .termo-section ul li {
        font-size: 1rem;
    }
}

/* Estilos para o botão de download PDF */
.download-pdf-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn-download-pdf {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, var(--color-laranja), var(--color-laranja-hover));
    padding: 20px 30px;
    border-radius: 15px;
    color: var(--color-branca);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(237, 108, 28, 0.3);
    max-width: 400px;
    width: 100%;
}

.btn-download-pdf:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(237, 108, 28, 0.4);
    color: var(--color-branca);
}

.btn-download-pdf .pdf-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.btn-download-pdf .download-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.btn-download-pdf .main-text {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
}

.btn-download-pdf .sub-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-download-pdf .download-icon {
    font-size: 1.5rem;
    margin-left: auto;
}

@media (max-width: 768px) {
    .btn-download-pdf {
        padding: 15px 20px;
    }

    .btn-download-pdf .pdf-icon {
        width: 30px;
        height: 30px;
    }

    .btn-download-pdf .main-text {
        font-size: 1rem;
    }

    .btn-download-pdf .sub-text {
        font-size: 0.8rem;
    }

    .btn-download-pdf .download-icon {
        font-size: 1.2rem;
    }
}

/* Estilos para o logo dos termos */
.logo-termos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    padding-top: 0px;
}

.logo-termos-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Torna o logo branco */
}

@media (max-width: 768px) {
    .logo-termos {
        margin-bottom: 40px;
        padding-top: 40px;
    }
    
    .logo-termos-img {
        height: 45px;
    }
}

@media (max-width: 1100px) {
    .planos-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .plano-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 30px;
    }
}

/* Padronização dos botões dos planos */
.planos-wrapper .plano-card .btn-comecar {
    width: 100%;
    max-width: 100%;
    padding: 10px 0;
    height: auto;
    max-height: 48px;
    border-radius: 8px;
    background: #26272c;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 18px;
    margin-bottom: 0;
    display: block;
    box-sizing: border-box;
  }
  
  .planos-wrapper .plano-card .btn-comecar:hover {
    background: #ed6c1c;
    color: #fff;
  }


