/* ------ Animação de PASSOS inicio ----- */

.image-area-passos,
.text-area-passos11 {
    opacity: 0;
    position: relative;
    top: 0;
    left: 0;
    transition: all 0.8s ease-out;
}

.image-area-passos.animate {
    opacity: 1;
    transform: translateX(-20px); /* imagem se desloca levemente para a esquerda */
}

.text-area-passos11.animate {
    opacity: 1;
    transform: translateX(20px); /* texto se desloca levemente para a direita */
}


/* ------ Animação de PASSOS fim ----- */


/* ----- PASSOS Inicio  ----------*/

.passos1 {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #222;
}

.tipos-passos2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;              
    padding: 40px;
    flex-wrap: wrap;
    max-width: 1200px;      
    margin: 0 auto;         
}

.image-area-passos {
    position: relative;
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

.photo-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #f5f5f5;
}

.photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-passos3 {
    position: absolute;
    background: #fff;
    border-radius: 15px;
    padding: 12px 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-size: 14px;
}

.card-left-passos4 {
    left: -30px;
    bottom: 10px;
    width: 140px;
    text-align: center;
}

.card-right-passos5 {
    right: -30px;
    top: 55%;
    text-align: center;
    width: 100px;
}

.icon-heart-passos6 {
    font-size: 18px;
    margin-bottom: 5px;
}

.big {
    font-weight: bold;
    font-size: 20px;
    margin: 0;
}

.subtitle-passos7 {
    font-size: 12px;
    color: #777;
}

.green {
    color: #00a651;
    font-weight: bold;
    font-size: 12px;
    margin-top: 5px;
}

.bar {
    height: 6px;
    background: linear-gradient(90deg, #ff6a9c, #ffbb6a);
    border-radius: 3px;
    margin-top: 8px;
}

.text-area-passos11 {
    flex: 1;
    min-width: 300px;
    position: relative;
    --dot: 38px; 
    padding-left: 0;
}

.text-area-passos11::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 36px;
    left: calc(var(--dot) / 2);
    width: 2px;
    background-color: #ddd;
    z-index: 0;
}

.item-passos10 {
    display: flex;
    align-items: center; /* CENTRA BOLINHA E TEXTO VERTICALMENTE */
    margin-bottom: 25px;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.circle {
    width: var(--dot);
    height: var(--dot);
    border-radius: 50%;
    background-color: #FF914D;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid transparent;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 1;
	margin-bottom: -8px;
}

.text-area-passos11::before {
    content: "";
    position: absolute;
    top: calc(var(--dot) / 0.30);
    bottom: calc(var(--dot) / 0.8);
    left: calc(var(--dot) / 2);
    width: 2px;
    background-color: #ddd;
    z-index: 0;
}

.circle:hover {
    background-color: #fff;
    border-color: #FF914D;
    color: #FF914D;
    transform: scale(1.15); 
}

/* Responsivo: mantém alinhamento */
@media (max-width: 768px) {
    .tipos-passos2 {
        flex-direction: column;
        gap: 30px;
    }

    .text-area-passos11::before {
       left: calc(var(--dot) / 1.9);
       top: calc(var(--dot) / 0.25);
    }

    .image-area-passos img {
        max-width: 100%;
    }
}

@media (max-width: 420px) {
    .image-area-passos img {
        max-width: 100%;
    }
}

@media (max-width: 390px) {
    .image-area-passos img {
        max-width: 100%;
		margin-left: -35px;
    }
}

/* ----- PASSOS Fim  ----------*/


/* ----- animação diferenciais inicio -----*/

/* estado inicial: sobrepostos */
.text-section-difer3,
.cards-difer4 {
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    will-change: transform, opacity;
}

/* DESKTOP: efeito horizontal */
@media (min-width: 769px) {
    .text-section-difer3 { transform: translateX(-25px); }
    .cards-difer4 { transform: translateX(25px); }

    .text-section-difer3.animate { transform: translateX(0); opacity: 1; }
    .cards-difer4.animate { transform: translateX(0); opacity: 1; }
}

/* MOBILE: efeito vertical */
@media (max-width: 768px) {
    .text-section-difer3,
    .cards-difer4 { transform: translateY(25px); }

    .text-section-difer3.animate,
    .cards-difer4.animate { transform: translateY(0); opacity: 1; }
}

/* ----- animação diferenciais fim -----*/

/* ----- DIFERENCIAIS inicio  ----------*/

.difer-1 {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #222;
}

.difer-cx-2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
}

.text-section-difer3 {
    flex: 1 1 400px;
    min-width: 300px;
}

.text-section-difer3 h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.text-section-difer3 p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.cards-difer4 {
    flex: 1 1 500px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.card-difer5 {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: box-shadow 0.3s ease;
}

.card-difer5:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.icon-difer6 {
    font-size: 24px;
    color: #ff4d4f;
}

.card-difer5 h3 {
    font-size: 23px !important;
    margin: 0;
    font-weight: 600;
}

.card-difer5 p {
    font-size: 18px !important;
    color: #555;
    margin: 0;
}

@media (max-width: 768px) {
    .difer-cx-2 {
        flex-direction: column;
        gap: 40px;
		margin-top: -80px;
    }

    .cards-difer4 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .cards-difer4 {
        grid-template-columns: 1fr;
    }
}

/* ----- DIFERENCIAIS fim  ----------*/


/* ----- animação CTA Cotacao Inicio  ----------*/

/* estado inicial */
.hero-cotacao-123 {
  opacity: 0;
  transform: translateY(80px); /* começa mais embaixo */
  transition: all 0.9s ease-out;
}

/* quando visível */
.hero-cotacao-123.animate {
  opacity: 1;
  transform: translateY(0);
}



/* ----- animação CTA Cotacao fim  ----------*/


/* ----- CTA Cotacao Inicio  ----------*/


.hero-cotacao-123 {
margin: 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 75vh;
    background: #ffffff;
    }

    .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    max-width: 1000px;
    width: 100%;
    flex-wrap: wrap;
	background-color:#f49a1c;
    /*background: url(../images/bg-03-cotacao.webp) center / cover no-repeat;*/
    background-attachment: fixed;
    }

    .hero-text {
     max-width: 500px;
    padding: 25px;
    border-radius: 12px;
    }

    .hero-text h2 {
      font-size: 36px !important;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
    }

    .hero-text p {
      font-size: 18px !important;
    margin-bottom: 25px;
    line-height: 1.5;
    color: #fff;
    }

    .hero-text .btn {
      display: inline-block;
    padding: 15px 27px;
    background: #1a4385;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 25px;
    }

    .hero-text .btn:hover {
      background: #23519b;
    }

    .hero-image {
      max-width: 500px;
    }

    .hero-image img {
      width: 100%;
    height: 500px;
    border-radius: 22px;
    }
	
	.desktop-img-hero{
	   display:block;	
	}
	
	.mobile-img-hero{
		display:none;
	}

    /* Responsivo */
    @media (max-width: 900px) {
      .hero {
        flex-direction: column;
        text-align: center;
      }

      .hero-text {
        margin-bottom: 30px;
      }
	  
	  .hero-image img {
    width: 100%;
    height: 380px;
    border-radius: 22px;
    margin-top: -55px;
	}

	.desktop-img-hero{
	   display:none;	
	}
	
	.mobile-img-hero{
		display:block;
	}
	
    }


/* ----- CTA Cotacao Fim  ----------*/



/* ----- Animação carrossel inicio  ----------*/

/* Estado inicial: invisível e deslocado para baixo */
.slideOpniao {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

/* Estado animado: visível e alinhado */
.slideOpniao.animate {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Animação carrossel fim  ----------*/


/* ----- Animação PORQUE ROTA inicio  ----------*/

/* Estado inicial: invisível e deslocado para baixo */
.porque-rota .d-flex.flex-col.centralize.p-3 {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

/* Estado animado: visível e alinhado */
.porque-rota .d-flex.flex-col.centralize.p-3.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ----- Animação PORQUE ROTA fim  ----------*/

/* ----- Animação Cards Azul Inicio  ----------*/

/* Estado inicial: invisível e deslocado para baixo */
.planos-cta__card {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

/* Estado animado: visível e alinhado */
.planos-cta__card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ----- Animação Cards Azul Fim  ----------*/




