/*
Theme Name: Assertive
Theme URI: https://assertive.com
Author: Beets Jr.
Author URI: https://www.beetsjr.com.br/
Description: Tema da Beets para a Assertive
Version: 1.0
*/

:root {
    --primary-blue: #15194B;
    --secondary-blue: #0994B4;
    --third-blue: #000760;
    --primary-font: "Inria Sans", sans-serif;
    --secondary-font: "League Spartan", "Inria Sans", sans-serif;
    scroll-behavior: smooth;
}

.solutions-content{
    font-size: 10px;
}

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

.inria-sans-font{
    font-family: "Inria Sans", sans-serif;
    font-style: normal;
}

.inria-sans-regular {
  font-family: "Inria Sans", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.inria-sans-bold {
  font-family: "Inria Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.montserrat-bold {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.montserrat-regular {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.montserrat-light {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.solutions-section{
    height: 100%;
    padding-bottom: 10vh;
    background: #C7EEFF;
    background: linear-gradient(180deg,rgba(199, 238, 255, 1) 0%, rgba(9, 97, 180, 1) 100%);
}

.solutions-content{
    max-width: 140em;
    margin: 0 auto;
}

.solutions-content .title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solutions-content .title h1{
    color: white;
    font-size: 4.5em;
    width: 50%;
    text-align: center;
}

.solutions-content .title h2 {
    color: black;
    font-size: 3em;
    width: 40%;
    text-align: center;
    margin-bottom: 3em;
    margin-top: 3.5em;
}

.card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    background: #0994B4;
    background: linear-gradient(90deg,rgba(9, 148, 180, 1) 0%, rgba(2, 41, 69, 1) 100%);
    border-radius: 10px;
    box-shadow:
        0 10px 18px rgba(0,0,0,.28), 
        0 25px 45px rgba(0,0,0,.20);
    padding: 2em;
}

.cards-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(28em, 1fr));
    gap: 15em 30em;               
    justify-items: center;     
    margin-top: 10em;   
}

.cards-grid .card-container:nth-child(3){
    grid-column: 1 / -1;         
    justify-self: center;        
}

.cards-grid .card h3{
    font-size: 3em;
    color: white;
}

.cards-grid .card p{
    font-size: 1.85em;
    color: white;
}

.cards-grid .card .characteristics{
    display: flex;
}

.cards-grid .card .characteristics div{
    color: white;
    font-size: 1.05em;
    margin-right: 0.5em;
    border: solid white 1px;
    padding: 4px 8px;
    border-radius: 20px;
    text-align: center;
}

.card-container{
    width: 50em;                
    height: 25em;
    perspective: 1000px;          
    position: relative;           
    border-radius: 10px;
}

.card-inner{
    width: 100%; height: 100%;
    transform-style: preserve-3d;
    transition: transform .8s ease;
    border-radius: 10px;
}

.card-container:hover .card-inner,
.card-container:focus-within .card-inner{
    transform: rotateY(180deg);
    cursor: pointer;
}

.card-inner .card{                
    position: absolute;
    inset: 0;
    border-radius: inherit;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2em;                
}

.front-card{
    background: linear-gradient(90deg,#0994B4 0%,#022945 100%);
    color:#fff;
}

.back-card{
    transform: rotateY(180deg);
    background: linear-gradient(0deg,#fff 65%,#3f99da 100%);
    color: var(--secondary-blue);
}

.back-card p{
    margin: auto auto;
    color: var(--secondary-blue);
    text-align: center;
}

.cards-grid .card-container .card-inner .back-card .sc-blue{
    color: var(--secondary-blue);
    font-size: 3em;
}

.back-card a {
    width: 100%;
    height: 100%;
    position: absolute;
    left: -0.1em;
    top: -0.1em;
}

.test-section{
    height: 100vh;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal.from-left {
    transform: translateX(-240px);
}

.reveal.from-right {
    transform: translateX(240px);
}

.reveal.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

@keyframes float {
  0%,100% { transform: translateY(0)      rotateZ(0deg); }
  50%     { transform: translateY(-1em)  rotateZ(.6deg); }
}

.card-container{                               
  animation: float 2s ease-in-out infinite; /* Mudar aqui (o tempo) para deixar mais lento/rapido o flutuar */
  will-change: transform;                      
}

.cards-grid .card-container:nth-child(2){ animation-delay: 1.4s; }
.cards-grid .card-container:nth-child(3){ animation-delay: 2.8s; }



@media ((min-width: 350px) and (max-width: 399px)){
    .solutions-content{
        font-size: 6px;
    }

    .cards-grid {
        gap: 10em;
    }
}

@media ((min-width: 400px) and (max-width: 599px)){
    .solutions-content{
        font-size: 7.52px;
    }

    .cards-grid {
        gap: 10em;
        margin-bottom: 5em;
    }
}

@media ((min-width: 600px) and (max-width: 799px)){
    .solutions-content{
        font-size: 10.4px;
    }

    .cards-grid {
        gap: 10em;
        margin-bottom: 10em;
    }
}

@media ((min-width: 800px) and (max-width: 999px)){
    .solutions-content{
        font-size: 12.48px;
    }

    .cards-grid {
        gap: 15em;
        margin-bottom: 15em;
    }
}

@media ((min-width: 1000px) and (max-width: 1299px)){
    .solutions-content{
        font-size: 14.4px;
    }

    .cards-grid {
        gap: 15em;
        margin-bottom: 15em;
    }
}

@media (max-width: 1300px) {

    .solutions-section{
        height: 100%;
        padding-bottom: 50px;
    }

    .cards-grid {
        grid-template-columns: minmax(28em, 1fr);
        margin-top: 5em;
    }

    .cards-grid .card:nth-child(3) {
        grid-column: auto;
    }

    .solutions-content .title h1 {
        font-size: 3em;
        width: 75%;
    }

    .solutions-content .title h2 {
        font-size: 2.5em;
        width: fit-content;
    }

    .card {
        width: fit-content;
        height: 30em;
        max-width: 50em;
        padding: 2.4em;

        border-radius: 1em;
        background: linear-gradient(180deg, #0994B4 0%, #022945 100%);
        box-shadow:
            0 10px 18px rgba(0, 0, 0, .18),
            0 25px 45px rgba(0, 0, 0, .10);

        display: flex;
        flex-direction: column;
        gap: 1.25em;
    }

    div .card-inner{
        min-height: 0;
        width: 100%; height: 30em;
        transform-style: preserve-3d;
        transition: transform .8s ease;
        border-radius: 10px;
    }

    .back-card{
        transform: rotateY(180deg);
        background: linear-gradient(0deg,#fff 65%,#3f99da 100%);
        color: var(--secondary-blue);
    }
}

@media ((min-width: 2000px) and (max-width: 2999px)) {
    .solutions-content{
        font-size: 12.8px;
    }

    .solutions-content{
        max-width: 180em;
    }

    .card{
        width: 65em;
        height: 28em;
    }
}

@media (min-width: 3000px) {
    .solutions-content{
        font-size: 17.6px;
    }

    .solutions-content{
        max-width: 240em;
    }

    .card{
        width: 65em;
        height: 28em;
    }

    .solutions-section{
        height: 100%;
        padding-bottom: 10vh;
        background: #C7EEFF;
        background: linear-gradient(180deg,rgba(199, 238, 255, 1) 0%, rgba(9, 97, 180, 1) 100%);
    }
}

/* Parte Murilo */

:root {
    --primary-blue: #15194B;
    --secondary-blue: #0994B4;
    --third-blue: #000760;
    --primary-font: "Inria Sans", sans-serif;
    --secondary-font: "League Spartan", "Inria Sans", sans-serif;
}

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

div.video {
    padding: 5em 0;
    position: relative;
    text-align: center;
}

div.video > video {
    border-radius: 2em;
    height: 25vw;
    width: 45vw;
}

.video-background-circle {
    background-image: linear-gradient(-60deg, transparent 15%, var(--secondary-blue));
    border-radius: 50%;
    height: 5em;
    position: absolute;
    width: 5em;
    z-index: -1;
}

@media (max-width: 800px) {
    div.video > video {
        height: 55vw;
        width: 90vw;
    }

    .video-background-circle {
        display: none;
    }
}

@media (min-width: 1960px) {
    .video {
        font-size: 24px;
    }
}

@media (min-width: 2400px) {
    .video {
        font-size: 32px;
    }
}

@media (min-width: 3000px) {
    .video {
        font-size: 40px;
    }
}

/* End Parte Murilo */

/* Parte Thales */

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

:root {
    --fonte-assertive: 'Inria Sans', sans-serif;
}

#hero {
    position: relative;
    height: 100vh;
    /* background-image: url('../imgs/'); */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 60, 0.5); 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 2rem;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: absolute;
    left: 10%;
    max-width: 800px;
    text-align: left;
    animation: fadeInUp 1s ease-in-out;
}

.hero-texto h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: bold;
    font-family: var(--fonte-assertive);
    margin-bottom: 1rem;
}

.hero-texto p {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-family: var(--fonte-assertive);
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #FFEAEA;
}

.btn-cta {
    display: inline-block;
    text-align: center;
    background-color: #202565;
    color: white;
    font-family: var(--fonte-assertive);
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    padding: clamp(1rem, 1vw, 1.2rem) clamp(1.5rem, 2vw, 2rem);
    width: 60%;
    text-decoration: none;
    font-weight: bold;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #15155c;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 

.card-geral {
  background-color: transparent;
  perspective: 1000px; 
}

.card-inner2 {
  position: relative;
  width: 100%;
  min-height: 280px;  
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card-geral:hover .card-inner2 {
  transform: rotateY(180deg);
}

.card-front2,
.card-back2 {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backface-visibility: hidden;
}

.card-front2 {
  background-color: #000439;
  color: #fff;               
}


.card-back2 {
  color: #15194B; 
  background: linear-gradient(0deg, rgba(255,255,255,1) 65%,rgba(63,153,218,1) 100%);
  transform: rotateY(180deg); 
}

.card-front2 h3,
.card-back2 h3 {
  font-family: inherit;
  font-size: 1.25rem;
  margin-bottom: 16px;
  line-height: 1.3;
}

.card-front2 p,
.card-back2 p {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
}

.segmentos-atendidos {
  font-family: var(--fonte-assertive);
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 40px 20px;

  text-align: center;
}

.titulo-secao {
  font-family: inherit;
  font-size: 2.5rem;
  color: #15194B;
  margin-bottom: 40px;
  text-align: center;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centraliza cada linha */
  gap: 24px;
  margin: 0 auto;
  max-width: 1200px;
}

.card-geral {
  /* garante até 3 por linha, mas só ocupa o “espaço que precisa” e deixa o gap */
  flex: 0 1 calc(33.333% - 24px);
  box-sizing: border-box;
}

#numbers {
  font-family: var(--fonte-assertive);
  background-color: rgba(9, 148, 180, 0.07);
  padding: 40px 20px;
}

.metricas-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10vw;
  height: fit-content;
  flex-wrap: wrap;
  text-align: center;
}

.metrica {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metrica img {
  width: 58px;
  height: 58px;
  margin-bottom: 12px;
}

.metrica .number {
  font-size: 1.5rem;
  font-weight: 500;
  color: #15194B;
  margin-bottom: 4px;
}

.metrica .descricao {
  font-size: 1.5rem;
  width: 80%;
  font-weight: bold;
  color: #15194B;
  line-height: 1.4;
}

.hero-overlay{
  display: flex;
  justify-content: center;
  padding: 0;
}

@media ((max-width: 699px)) {
  .btn-cta{
    margin: 0 auto;
  }

  .card-front2 h3,
  .card-back2 h3 {
    font-size: 1rem;
  }

  .card-front2 p,
  .card-back2 p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  .titulo-secao {
  font-size: 2rem;
}

.metrica img {
  width: 45px;
  height: 45px;
}

.metrica .number {
  font-size: 1.5rem;
  font-weight: 500;
  color: #15194B;
  margin-bottom: 4px;
}

.metrica .descricao {
  font-size: 1.2rem;
  font-weight: bold;
  color: #15194B;
  line-height: 1.4;
}

  .cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 85vw;
    justify-content: center;
    margin: 0 auto;
  }

  .hero-texto{
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    width: 85%;
    position: static;
    display: flex;
    justify-content: center;
  }

}

@media ((min-width: 700px) and (max-width: 999px)) {
  .btn-cta{
    font-size: 2rem;
    margin: 0 auto;
    margin-top: 1rem;
  }

  .hero-texto{
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .hero-texto h1{
    font-size: 4rem;
  }

  .hero-texto p{
    font-size: 2rem;
    margin-top: 0.5rem;
  }

  .hero-content {
    width: 85%;
    position: static;
    display: flex;
    justify-content: center;
  }

  .card-front2 h3,
  .card-back2 h3 {
    font-size: 1rem;
  }

  .card-front2 p,
  .card-back2 p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  .titulo-secao {
  font-size: 2rem;
}

.metrica img {
  width: 45px;
  height: 45px;
}

.metrica .number {
  font-size: 1.5rem;
  font-weight: 500;
  color: #15194B;
  margin-bottom: 4px;
}

.metrica .descricao {
  font-size: 1.2rem;
  font-weight: bold;
  color: #15194B;
  line-height: 1.4;
}

  .cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* centraliza cada linha */
    gap: 24px;
    margin: 0 auto;
    max-width: 1200px;
  }

  .card-geral {
    /* garante até 3 por linha, mas só ocupa o “espaço que precisa” e deixa o gap */
    flex: 0 1 calc(50% - 24px);
    box-sizing: border-box;
  }
}

@media ((min-width: 1000px) and (max-width: 1399px)) {
  .btn-cta{
    font-size: 2rem;
    margin: 0 auto;
    margin-top: 1rem;
  }

  .hero-texto{
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .hero-texto h1{
    font-size: 4rem;
  }

  .hero-texto p{
    font-size: 2rem;
    margin-top: 0.5rem;
  }

  .hero-content {
    width: 85%;
    position: static;
    display: flex;
    justify-content: center;
  }

  .card-front2 h3,
  .card-back2 h3 {
    font-size: 1rem;
  }

  .card-front2 p,
  .card-back2 p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  .titulo-secao {
  font-size: 2rem;
}

.metrica img {
  width: 45px;
  height: 45px;
}

.metrica .number {
  font-size: 1.5rem;
  font-weight: 500;
  color: #15194B;
  margin-bottom: 4px;
}

.metrica .descricao {
  font-size: 1.2rem;
  font-weight: bold;
  color: #15194B;
  line-height: 1.4;
}

  .cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    justify-content: center;
    margin: 0 auto;
  }

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

@media ((min-width: 1400px) and (max-width: 1599px)) {
  .cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    justify-content: center;
    margin: 0 auto;
  }

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

@media (min-width: 1600px) {
    .hero-texto h1 {
    font-size: 4rem;
    width: 85%;
  }
  
  .hero-texto p {
    width: 85%;
    font-size: 1.75rem;
  }

  .btn-cta {
    font-size: 1.6rem;
    padding: 1.2rem 2.5rem;
  }
}
  

@media (min-width: 2000px) {
  .hero-texto h1 {
    width: 85%;
    font-size: 6rem; 
  }
  .hero-texto p  { width: 85%; font-size: 3rem; margin-top: 2.5rem; text-align: justify;}
  .btn-cta       { font-size: 3rem; margin-top: 2.5rem; padding: 1.5rem 5rem; }

  .metrica img {
  width: 78px;
  height: 78px;
  }

  .cards-container {          
    max-width: 2100px;
    gap: 48px;
  }
  .card-inner2 {
    min-height: 400px;  
  }
  .card-front2 h3,
  .card-back2 h3 {
    font-size: 2rem;  
  }
  .card-front2 p,
  .card-back2 p {
    font-size: 1.5rem;
  }

.titulo-secao {
  font-size: 3rem;
}

.metrica .number {
  font-size: 2rem;
  font-weight: 500;
  color: #15194B;
  margin-bottom: 4px;
}

.metrica .descricao {
  font-size: 2rem;
  font-weight: bold;
  color: #15194B;
  line-height: 1.4;
}

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

@media (min-width: 3000px) {
  .hero-texto h1 { 
    width: 75%;
    font-size: 8.5rem; 
  }
  .hero-texto p  { 
    width: 75%;
    font-size: 5rem; 
    margin-top: 5rem;
  }
  .btn-cta       { font-size: 3.5rem; padding: 3rem 5.5rem; border-radius: 2rem; margin-top: 5rem; }
  .cards-container {          
    max-width: 2600px;
    gap: 2vw;
  }
  .card-inner2 {
    min-height: 500px;  
  }
  .card-front2 h3,
  .card-back2 h3 {
    font-size: 2.5rem;  
  }
  .card-front2 p,
  .card-back2 p {
    font-size: 2rem;
  }

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

.card.is-flipped .card-inner2 {
  transform: rotateY(180deg);
}

@media (hover: hover) and (pointer: fine) {
  .card:hover .card-inner2 {
    transform: rotateY(180deg);
  }
}

@media (hover: none) and (pointer: coarse) {
  .card-inner2 {
    transform: none;
  }
  .card-front2,
  .card-back2 {
  pointer-events: auto;
}
}

/**/



/* End Parte Thales */
