/* ================================
   FONTES
================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary: #f0771a;     
  --primary-light: #FFD54F;
  --dark-blue: #003366;
  --gray-light: #F6F6F6;
  --white: #ffffff;
  --black: #191b1c;

  --radius: 12px;
}

/* ================================
   RESET / BASE
================================ */
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  background-color: var(--white);
  color: var(--black);
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
}

section {
  padding: 100px 0;
}

/* ================================
   NAVBAR
================================ */
.navbar {
  background-color: var(--white);
  padding: 15px 0;
  border-top: 14px solid transparent;
  border-image: linear-gradient(90deg, var(--primary), var(--primary-light)) 1;
}

.logo {
  width: 180px;
}

.nav-link {
  color: #001e82;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

/* ================================
   HERO SECTION
================================ */
.hero-section {
  background-image: url('../images/banner-segsun-principal-2.jpg');
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.home {
  padding: 140px 0 40px 0;
}

.hero-headline h1 {
  font-size: 42px;
  text-transform: uppercase;
}

.hero-headline p {
  font-size: 18px;
}


.text-azul {
    color: #013c63 !important;
}

.text-laranja {
    color: #ff7a00 !important;
}


/* ================================
   BENEFÍCIOS
================================ */
.beneficios .title h2 {
  font-size: 34px;
  color: var(--primary);
}

.beneficios .box {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid #e7e7e7;
  text-align: center;
  height: 100%;
  font-weight: 500;
  transition: 0.2s;
}

.beneficios .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* ================================
   PARA QUEM É
================================ */
.bg-light {
  background-color: var(--gray-light) !important;
}

.btn-primary {
  background-color: var(--primary);
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: var(--radius);
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--primary-light);
  filter: brightness(0.9);
}

.section-branca {
    background-color: #fff;
}


.beneficios {
    background-color: #f5f5f5;
}

.beneficios .box {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: .3s ease;
}

.beneficios .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 26px rgba(0,0,0,0.12);
}

.beneficios .splide__slide {
    padding: 20px 10px;
}

.beneficio-icon {
    height: 70px;
    width: auto;
}

.beneficios p {
    font-size: 15px;
}

#beneficiosCarousel .splide__slide {
    text-align: left !important;
}

#beneficiosCarousel .splide__slide img {
    margin-left: 0 !important;
}

#beneficiosCarousel .splide__slide p {
    text-align: left !important;
}

#beneficiosCarousel .splide__arrow {
    display: none !important;
}


.splide__slide {
  display: flex;
  justify-content: center;
}

.para-quem-e .splide__slide {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.para-quem-e .para-img {
    max-height: 260px;
    object-fit: cover;
    border-radius: 15px;
}

.para-quem-e p {
    margin: 0;
}

#paraQuemCarousel .splide__pagination {
    display: none !important;
}




/* =======================================
   IMPACTO + CONDIÇÕES ESPECIAIS
======================================= */
.impacto-condicoes {
  background-image: url('../images/banner-segsun-cta.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.impacto-condicoes h2 {
  font-size: 32px;
}

.impacto-condicoes .col-md-6.text-start {
  display: flex;
  flex-direction: column;
}


.impacto-condicoes .btn-impacto {
  margin-top: auto;
  align-self: flex-start; 
}



/* ================================
   DEPOIMENTOS
================================ */
.depoimentos {
  background-image: url('../images/banner-segsun-cta-claro.png');
  background-size: cover;
  background-position: center;
}

.depoimentos .title h2 {
  color: var(--primary);
}

.depoimento-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid #dcdcdc;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: 0.2s;
}

.depoimento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.depoimento-card p {
  font-style: italic;
}

.depoimento-card h5 {
  margin-top: 10px;
  font-weight: 700;
}

#depoimentos-carousel .splide__arrow {
    display: none !important;
}

#depoimentos-carousel .splide__pagination {
    display: none !important;
}



/* ================================
   CONTATO FINAL
================================ */
.contact {
  background-color: var(--primary);
  padding: 80px 0;
}

.contact p {
  font-size: 17px;
  font-weight: 400;
}

/* ================================
   FOOTER
================================ */
footer {
  background-color: #013c63;
}

.float {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  transition: 0.5s;
}

.float:hover {
  transform: scale(1.1);
}

.float img {
  max-width: 110%;
}


/* ================================
   RESPONSIVIDADE
================================ */
@media (max-width: 992px) {
  .hero-headline h1 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .home {
    padding-top: 100px;
  }
  .hero-headline h1 {
    font-size: 28px;
  }
}

/* FORMULÁRIO PHP */
.formulario {
    border-radius: 12px;
    padding: 35px;
    background: linear-gradient(135deg, #f0771a, #f0771a);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

/* Título do formulário */
.formulario h2 {
    font-size: 24px;
    color: #013c63;
    margin-bottom: 20px;
}

/* Labels e parágrafos */
.formulario label,
.formulario p {
    color: #000;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

/* Inputs, textarea e selects */
.formulario input,
.formulario textarea,
.formulario select {
    background: #fff;
    color: #000;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 12px;
    width: 100%;
    margin-bottom: 15px;
    font-size: 14px;
    box-sizing: border-box;
}

/* Foco nos campos */
.formulario input:focus,
.formulario textarea:focus,
.formulario select:focus {
    border-color: #013c63;
    outline: none;
}

/* Botão do formulário (input type="submit") */
.formulario input[type="submit"],
.formulario button {
    background: #013c63;   /* Azul */
    color: #fff;           /* Texto branco */
    border: none;
    padding: 14px 20px;
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover do botão */
.formulario input[type="submit"]:hover,
.formulario button:hover {
    background: #fff;       /* Branco */
    color: #013c63;         /* Texto azul */
}

/* Mobile */
@media (max-width: 768px) {
    .formulario {
        padding: 25px;
    }

    .formulario h2 {
        font-size: 20px;
        text-align: center;
    }

    .formulario p,
    .formulario label {
        text-align: center;
    }
    
    .formulario input[type="submit"],
    .formulario button {
        width: 100%;
    }
}


/* Cor padrão dos ícones */
.footer-social a i {
    color: #013c63; 
    font-size: 30px;  
    transition: color 0.3s ease;
}

.footer-social a[href*="instagram"] i {
    color: #fff; 
}

.footer-social a[href*="facebook"] i {
    color: #fff; 
}

.footer-social a[href*="linkedin"] i {
    color: #fff; 
}

.footer-social a:hover i {
    color: var(--primary); 
}

.para-img {
    width: 80%;  /* largura normal */
    height: auto; 
}

/* Mobile: telas até 768px */
@media (max-width: 768px) {
    .para-img {
        width: 80%;          /* mantém largura */
        height: 300px;        /* altura fixa maior no mobile */
        object-fit: contain;  
    }
}


/* Mobile: telas até 768px */
@media (max-width: 768px) {
    .hero-headline .content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Centraliza todo o conteúdo da coluna de texto */
    .impacto-condicoes .col-md-6.text-start {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Título e parágrafo */
    .impacto-condicoes .col-md-6.text-start h2,
    .impacto-condicoes .col-md-6.text-start p,
    .impacto-condicoes .col-md-6.text-start small {
        text-align: center;
        width: 100%;
    }

    /* Lista de checks: cada p com ícone centralizado */
    .impacto-condicoes .col-md-6.text-start p {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap; /* evita quebrar ícone e texto */
        margin-bottom: 0.5rem;
    }

    .impacto-condicoes .check-icon {
        margin-right: 0.5rem;
        min-width: 20px; /* mantém alinhamento dos ícones */
    }

    /* Botão centralizado */
    .impacto-condicoes .btn-impacto {
        display: block;
        margin: 1.5rem auto 0 auto;
    }
}




