@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Paleta de cores principal */
  --primary: #d3d7e8;     /* Azul principal */
  --pricing: #354492;       /* Azul escuro 2 */
  --primary-dark: #d3d7e8;  /* Azul escuro */
  --primary-light: #4C9AFF; /* Azul claro */
  
  /* Cores de fundo */
  --bg-main: #FFFFFF;       /* Fundo principal (branco) */
  --bg-section: #F4F5F7;    /* Fundo de seções alternadas */
  --bg-card: #FFFFFF;       /* Fundo dos cards */
  
  /* Cores do texto */
  --text-primary: #172B4D;  /* Texto principal (azul escuro) */
  --text-secondary: #5E6C84; /* Texto secundário (cinza) */
  --text-light: #1f2855;    /* Texto claro */
  
  /* Cores de destaque */
  --accent: #36B37E;        /* Verde para elementos positivos */
  --accent-hover: #00875A;  /* Verde escuro para hover */

  --bg-color: #ffffff;
  --text-color: #000000;
}

body.dark {
    --bg-color: #172B4D;
    --bg-color-depoimentos: #1e3865;
    --text-color: #f5f5f5;
}

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

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    color: var(--text-color);
    transition: 0.3s ease;
    overflow-x: hidden;
    
}

/* estilização do botao dark e light mode*/
/* From Uiverse.io by Admin12121 */ 
.switch-button {
    display: flex;
    align-items: right;
    justify-content: center;
    height: 40px; /* Reduzido */
  }
  
  .switch-button .switch-outer {
    height: 100%;
    width: 80px; /* Reduzido proporcionalmente */
    background: #252532;
    border-radius: 100px;
    box-shadow: inset 0px 4px 8px #16151c, 0px 2px 5px -2px #403f4e;
    border: 1px solid #32303e;
    padding: 4px;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
  }
  
  .switch-button .switch-outer input[type="checkbox"] {
    opacity: 0;
    position: absolute;
  }
  
  .switch-button .switch-outer .button-toggle {
    height: 28px;
    width: 28px;
    background: linear-gradient(#3b3a4e, #272733);
    border-radius: 50%;
    box-shadow: inset 0px 4px 3px #424151, 0px 3px 10px #0f0e17;
    position: relative;
    z-index: 2;
    transition: left 0.3s ease-in-out;
    left: 0;
  }
  
  .switch-button .switch-outer .button {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  
  .switch-button .switch-outer .button-indicator {
    height: 16px;
    width: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  .switch-button
  .switch-outer
  input[type="checkbox"]:checked
  + .button
  .button-toggle {
  left: 52%;
}

.switch-button
  .switch-outer
  input[type="checkbox"]:checked
  + .button
  .button-indicator {
  animation: indicator 0.6s forwards;
}

@keyframes indicator {
  0% {
    opacity: 1;
    left: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    border: 2px solid #60d480;
    left: -50%;
  }
}  

.switch-button-desktop {
    display: flex;
    align-items: right;
    justify-content: center;
    height: 40px; /* Reduzido */
  }
  
  .switch-button-desktop .switch-outer {
    height: 100%;
    width: 80px; /* Reduzido proporcionalmente */
    background: #252532;
    border-radius: 100px;
    box-shadow: inset 0px 4px 8px #16151c, 0px 2px 5px -2px #403f4e;
    border: 1px solid #32303e;
    padding: 4px;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
  }
  
  .switch-button-desktop .switch-outer input[type="checkbox"] {
    opacity: 0;
    position: absolute;
  }
  
  .switch-button-desktop .switch-outer .button-toggle {
    height: 28px;
    width: 28px;
    background: linear-gradient(#3b3a4e, #272733);
    border-radius: 50%;
    box-shadow: inset 0px 4px 3px #424151, 0px 3px 10px #0f0e17;
    position: relative;
    z-index: 2;
    transition: left 0.3s ease-in-out;
    left: 0;
  }
  
  .switch-button-desktop .switch-outer .button {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  
  .switch-button-desktop .switch-outer .button-indicator {
    height: 16px;
    width: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  .switch-button-desktop
  .switch-outer
  input[type="checkbox"]:checked
  + .button
  .button-toggle {
  left: 52%;
}

.switch-button-desktop
  .switch-outer
  input[type="checkbox"]:checked
  + .button
  .button-indicator {
  animation: indicator 0.6s forwards;
}

@keyframes indicator {
  0% {
    opacity: 1;
    left: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    border: 2px solid #60d480;
    left: -50%;
  }
}  
  

/* ===== NAVBAR ===== */
.navbar {
    position: fixed !important;
    gap: 2rem;  
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    padding: 1rem 2rem;
    transition: 0.3s;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
}

.menubtn {
    font-size: 24px;
    cursor: pointer;
    display: none;
    color: var(--text-light);
}

.menu {
    list-style: none;
    padding: 0;
    display: flex;
}

.menu.active {
    display: flex;
}

.menu li {
    margin: 0 15px;
}

.menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}

.link {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.link li {
    margin: 15px 0;
    color: var(--text-color);
}

.link li a {
    margin-left: 20px;
}

.link a {
    position: relative;
    padding-bottom: 0.75rem;
    color: var(--text-color);
}

.link a::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

.link a:hover::after {
    width: 70%;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 100%;
    margin: 0;
    padding: 5rem 10%;
}

/* ===== HEADER ===== */
header.container {
    background-color: var(--bg-color);
    margin-top: 0;
    padding-top: 8rem;
    padding-bottom: 5rem;
    color: var(--pricing);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
}

header .content h2 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
}

header .content p {
    margin-bottom: 2rem;
    color: var(--pricing);
    font-size: 1.1rem;
    line-height: 1.6;
}

header .image {
    position: relative;
    display: flex;
    justify-content: center;
}

header .image img {
    max-width: 80%;
    margin: auto;
}

/* ===== SEÇÕES ===== */
section.container {
    width: 100%;
    padding: 5rem 10%;
}

section.container:nth-child(odd) {
    background-color: var(--bg-color-depoimentos);
}

section.container:nth-child(even) {
    background-color: var(--bg-section);
}

section .header {
    margin-bottom: 3rem;
    color: var(--primary);
    text-align: center;
    font-size: 2.25rem;
    font-weight: 600;
    position: relative;
}

section .header_names {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 80px;
    
}

section .header_image {
    display: inline-block;
    width: 350px;
    border-radius: 10px;
    margin: 60px;
    box-shadow: 0 4px 16px rgba(0, 0, 1, 1);
    
}
section #thiago {
    width: 380px;
    box-shadow: 0 4px 16px rgba(0, 0, 1, 1);
}

section .header:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

/* ===== FEATURES ===== */
.features {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.features .card {
    background-color: var(--bg-card);
    padding: 3rem;
    width: 100%;
    max-width: 1100px;
    margin: auto;
    text-align: justify;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

.features .card span {
    display: inline-block;
    background-color: var(--primary);
    padding: 10px 15px;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--text-light);
    border-radius: 50%;
}

.features .card h4 {
    margin-bottom: 1.5rem;
    color: var(--pricing);
    font-size: 1.8rem;
    font-weight: 600;
}

.features .card p {
    color: var(--text-primary);
    width: 100%;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.8;
    text-align: justify;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.lista {
    padding-left: 0;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.lista li {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 1rem;
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.lista li:before {
    content: "✅";
    margin-right: 10px;
}

/* ===== PRICING CARDS ===== */
.pricing {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
}

.pricing .card {
    padding: 3rem 2rem;
    background-color: var(--bg-card);
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pricing .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 1);
}

.pricing .card .content {
    flex: 1;
    margin-bottom: 2rem;
}

.pricing .card h4 {
    margin-bottom: 1rem;
    color: var(--pricing);
    font-size: 1.4rem;
    font-weight: 600;
}

.pricing .card h3 {
    color: var(--pricing);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 700;
    border-bottom: 1px solid #eaeaea;
}

.pricing .card p {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.pricing .card p i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-right: 0.8rem;
}

/* ===== BOTÕES ===== */
#btn1, #btn2, #btn3, #btn4 {
    position: relative;
    display: inline-block;
    margin: 15px;
    padding: 15px 30px;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #725AC1;
    background: transparent;
    cursor: pointer;
    transition: ease-out 0.5s;
    border: 2px solid #725AC1;
    border-radius: 10px;
    box-shadow: inset 0 0 0 0 #725AC1;
}

 button {
    position: relative;
    display: inline-block;
    margin: 15px;
    padding: 15px 30px;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #725AC1;
    background: transparent;
    cursor: pointer;
    transition: ease-out 0.5s;
    border: 2px solid #725AC1;
    border-radius: 10px;
    box-shadow: inset 0 0 0 0 #725AC1;
  }
  
  #btn1:hover, #btn2:hover, #btn3:hover, #btn4:hover {
    color: white;
    box-shadow: inset 0 -100px 0 0 #725AC1;
  }
  
  button:active {
    transform: scale(0.9);
  }
/*
#btn1:hover, #btn2:hover, #btn3:hover, #btn4:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgb(255, 255, 255);
}

/* ===== FOOTER ===== */
footer.container {
    background-color: var(--bg-color-);
    padding-bottom: 3rem;
    color: var(--text-color);
}

footer .column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

footer .column .socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

footer .column .socials a {
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 15px;
    font-size: 1.25rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

footer .column .socials a:hover {
    color: var(--text-color);
    background-color: var(--primary-dark);
    border-color: var(--text-light);
}

footer .column h4 {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer .container .img {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    width: 80px;
}

footer .column > a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

footer .column > a:hover {
    color: var(--text-color);
}

footer .column .logo{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 350px;
}

#Disclaimer {
    color: var(--text-color); 
    font-weight: bold;

}

#disclaimer-text {
    color: var(--text-color);
}


.copyright {
    background-color: var(--bg-color);
    max-width: 100%;
    margin: 0;
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-align: center;
}

.video {
    width: 350px; /* Tamanho original mantido para dispositivos móveis */
    max-width: 100%; /* Garante que o vídeo não ultrapasse o contêiner em telas pequenas */
    height: auto; /* Mantém a proporção */
    box-shadow: 0 4px 16px rgba(0, 0, 1, 1);
    border-radius: 10px;
}
.switch-button{
    display: none;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .container {
        padding: 3rem 5%;
    }
    .switch-button {
        display: block;
        margin: auto 6rem ;
    }
    .switch-button-desktop {
        display: none;
    }

    
    header.container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 6rem;
    }
    
    header .image {
        grid-area: 1/1/2/2;
        margin-bottom: 2rem;
    }
    
    .menubtn {
        display: block;
        color: var(--text-color);
    }

    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--bg-color);
        padding: 10px 0;
    }

    .menu li {
        text-align: center;
        padding: 10px 0;
    }

    .menu.active {
        display: flex !important;
    }

    .features {
        display: grid;
        flex-direction: column;
    }
    
    .features .card {
        padding: 2rem;
    }


    footer {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    footer .column {
        margin-bottom: 2rem;
    }
    
    footer .column .socials {
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .menu {
        display: flex !important;
    }

    .menubtn {
        display: none !important;
    }
    
    footer .column .logo {
        justify-content: left;
        display: flex;
    }

    .video  {
        width: 700px;

    }
   .switch-button-desktop{
    display: block;
   }
    

}

@media only screen and (max-width: 480px) {
    .pricing {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto;
    }
    
    .pricing .card {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto;
    }
    
    section .header {
        font-size: 1.8rem;
    }

    
      
}