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

:root {
  --corPrimario:#0e2430;  
  --corSecundario:#004a1e;
  --corTerciario:#f5b349;
  --corBranco:#ffffff; 
  --fonte-principal:"Poppins";     
}

/* Reset e base */
* {
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
  -moz-box-sizing: border-box; 
  -webkit-box-sizing: border-box; 
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fonte-principal), sans-serif;
  line-height: 1.6;
  color: var(--corPrimario);
  padding-top: 90px;
}

object, embed, video, iframe, iframe['style'] { 
  max-width:100%; 
  height:auto; 
}

img { 
  max-width:100%; 
  vertical-align:middle; 
}

ul { 
  list-style:none; 
}

fieldset {
  border: 0;
}

input, select, textarea {
  padding: 10px; 
  width: 100%;
}

input.btn {
  width: auto; 
  cursor: pointer;
}

.container { 
  float:left; 
  width:100%; 
}

.clear { 
  clear:both; 
}

.content { 
  float:left; 
  width:92%; 
  margin:0 4%; 
  padding: 20px 0; 
}

/* ============================================
   HEADER - MELHORADO
   ============================================ */
.header {
  background: var(--corBranco);
  padding: 1em 0;
  border-bottom: 2px #e8e8e8 solid;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  gap: 15px;
}

.header_logo {
  flex: 0 0 auto;
  width: auto;
  margin: 0;
}

.header_logo img {
  height: 70px;
  width: auto;
}

.header_social {
  display: none;
  gap: 12px;
  align-items: center;
}

.header_social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--corSecundario);
  color: var(--corBranco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  padding-top: 5px;
}

.header_social a:hover {
  background: var(--corTerciario);
  transform: scale(1.1);
}

.header_cta .btn-chamada {
  padding: 10px 25px;
  font-size: 16px;
  white-space: nowrap;
}

/* ============================================
   BANNER/HERO - MELHORADO
   ============================================ */
.section-banner {
  padding: 20px 0 60px;
  background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%);
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.section-banner::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--corSecundario));
  opacity: 0.1;
}

.section-banner .content {
  padding: 2em 0;
  position: relative;
  z-index: 2;
}

.section-banner .row {
  width: 100%;
  float: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.section-banner .col-left-b {
  width: 100%;
  text-align: center;
}

.section-banner .col-left-b img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.section-banner .col-right-b {
  width: 100%;
  text-align: center;
  background: var(--corBranco);
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* Animações de scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.section-banner .col-right-b .title {
  font-family: var(--fonte-principal);
  font-size: 32px;
  font-weight: 700;
  color: var(--corSecundario);
  margin-bottom: 25px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.section-banner .col-right-b .title i {
  font-size: 36px;
  color: var(--corTerciario);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.section-banner .col-right-b .txt {
  color: var(--corPrimario);
  font-size: 18px;
  font-family: var(--fonte-principal);
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: left;
}

.btn-chamada {
  display: inline-block;
  background: var(--corSecundario);
  color: var(--corBranco);
  text-decoration: none;
  border: 3px solid var(--corSecundario);
  border-radius: 50px;
  padding: 16px 45px;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--fonte-principal);
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,74,30,0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-chamada:hover {
  background-color: var(--corBranco);
  color: var(--corSecundario);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,74,30,0.4);
}

/* Indicador de Scroll */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.scroll-indicator span {
  display: block;
  font-size: 12px;
  color: var(--corSecundario);
  margin-bottom: 5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-indicator i {
  font-size: 30px;
  color: var(--corSecundario);
}

/* ============================================
   SEÇÃO CURSOS - MELHORADA
   ============================================ */
.section-cursos {
  padding: 60px 0;
  background: var(--corSecundario);
  position: relative;
}

.section-cursos .content {
  padding: 2em 0;
}

.section-cursos .title {
  font-size: 2.5em;
  font-family: var(--fonte-principal);
  font-weight: 700;
  color: var(--corBranco);
  text-align: center;
  margin-bottom: 15px;
}

.section-cursos .descricao {
  font-family: var(--fonte-principal);
  font-size: 1.3em;
  line-height: 1.6;
  text-align: center;
  font-weight: 400;
  color: var(--corTerciario);
  margin-bottom: 50px;
}

.section-cursos .row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.section-cursos .cursos {
  background: rgba(255,255,255,0.1);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.section-cursos .cursos:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--corTerciario);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.section-cursos .cursos .icone {
  display: flex;
  margin: 0 auto 25px;
  background: var(--corBranco);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.section-cursos .cursos .icone i {
  font-size: 32px;
  color: var(--corSecundario);
}

.section-cursos .cursos p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--corBranco);
  font-family: var(--fonte-principal);
}

/* ============================================
   SEÇÃO DESTAQUE - MELHORADA
   ============================================ */
.section-destaque {
  padding: 60px 0;
  background: var(--corBranco);
}

.section-destaque .content {
  padding: 2em 0;
}

.section-destaque .row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.section-destaque .col-left-b {
  width: 100%;
  background: #f7f7f7;
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.section-destaque .col-left-b .title {
  font-family: var(--fonte-principal);
  font-size: 32px;
  font-weight: 700;
  color: var(--corSecundario);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-destaque .col-left-b .title i {
  color: var(--corTerciario);
}

.section-destaque .col-left-b .txt {
  color: var(--corPrimario);
  font-size: 17px;
  font-family: var(--fonte-principal);
  line-height: 1.9;
  text-align: justify;
}

.section-destaque .col-right-b {
  width: 100%;
  text-align: center;
}

.section-destaque .col-right-b img {
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* ============================================
   SEÇÃO AGENDAMENTO - MELHORADA
   ============================================ */
.section-agendamento {
  padding: 60px 0;
  background: linear-gradient(135deg, #f7f7f7 0%, #ffffff 100%);
}

.section-agendamento .content {
  padding: 2em 0;
}

.section-agendamento .title {
  font-size: 2.5em;
  font-family: var(--fonte-principal);
  font-weight: 700;
  color: var(--corSecundario);
  text-align: center;
  margin-bottom: 15px;
}

.section-agendamento .texto {
  font-size: 1.2em;
  font-family: var(--fonte-principal);
  color: var(--corPrimario);
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.6;
}

.agendamento {
  width: 100%;
  background: var(--corBranco);
  padding: 30px 20px;
  margin-bottom: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.agendamento:hover {
  border-color: var(--corSecundario);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.agendamento i {
  font-size: 50px;
  color: var(--corSecundario);
  margin-bottom: 20px;
  display: block;
}

.agendamento p {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--corSecundario);
  font-family: var(--fonte-principal);
  margin-bottom: 15px;
}

.agendamento span,
.agendamento .contact-info {
  font-size: 1.1em;
  color: var(--corPrimario);
  font-family: var(--fonte-principal);
  line-height: 1.8;
  display: block;
}

.agendamento .phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Modal do Mapa */
.map-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.map-modal.active {
  display: flex;
}

.map-modal-content {
  background: white;
  border-radius: 15px;
  padding: 0;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  overflow: hidden;
}

.map-modal-header {
  padding: 20px;
  background: var(--corSecundario);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map-modal-header h3 {
  margin: 0;
  font-size: 1.3em;
}

.map-modal-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.map-modal-close:hover {
  background: rgba(255,255,255,0.2);
}

.map-modal-body {
  padding: 0;
}

.map-modal-body iframe {
  width: 100%;
  height: 500px;
  border: none;
}

/* ============================================
   FOOTER - MELHORADO
   ============================================ */
.footer {
  background: var(--corSecundario);
  color: var(--corBranco);
  font-family: var(--fonte-principal);
}

.footer .content {
  padding: 3em 0;
}

.footer_social {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.footer_social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--corBranco);
  color: var(--corSecundario);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s ease;
  text-decoration: none;
  padding-top: 7px;
}

.footer_social a:hover {
  background: var(--corTerciario);
  color: var(--corBranco);
  transform: scale(1.15);
}

.colfooter {
  width: 100%;
}

.copyright {
  width: 100%;
  padding: 2em 0;
  background: var(--corPrimario);
}

.copyright .content {
  padding: 1em 0;
}

.copyright .copy-text p {
  font-size: 1em;
  font-family: var(--fonte-principal);
  font-weight: 400;
  color: var(--corBranco);
  text-align: center;
  margin: 0;
}

.copyright .copy-text p a {
  text-decoration: none;
  color: var(--corBranco);
}

.copyright .copy-text p a:hover {
  text-decoration: underline;
}

.copyright .col {
  width: 100%;
  margin-bottom: 10px;
}

/* ============================================
   RESPONSIVO
   ============================================ */

/* 600px */
@media (min-width: 37.5em) {
  .header_logo img {
    height: 80px;
  }
  
  .section-banner .col-right-b .title {
    font-size: 38px;
  }
}

/* 768px */
@media (min-width: 48em) {
  .header_logo img {
    height: 100px;
  }
  
  .header_social {
    display: flex;
  }
  
  .section-banner .row {
    flex-direction: row;
    align-items: center;
  }
  
  .section-banner .col-left-b {
    width: 45%;
  }
  
  .section-banner .col-right-b {
    width: 52%;
    text-align: left;
  }
  
  .section-banner .col-right-b .title {
    justify-content: flex-start;
  }
  
  .section-cursos .row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-destaque .row {
    flex-direction: row-reverse;
  }
  
  .section-destaque .col-left-b {
    width: 52%;
  }
  
  .section-destaque .col-right-b {
    width: 45%;
  }
  
  .agendamento {
    width: 48%;
    float: left;
    margin-right: 4%;
  }
  
  .agendamento:nth-of-type(2n) {
    margin-right: 0;
  }
}

/* 960px */
@media (min-width: 60em) {
  .content {
    width: 85%;
    margin: 0 7.5%;
  }
  
  .section-banner {
    padding: 40px 0 80px;
  }
  
  .section-banner .col-left-b {
    width: 42%;
  }
  
  .section-banner .col-right-b {
    width: 55%;
  }
  
  .section-banner .col-right-b .title {
    font-size: 48px;
  }
  
  .section-banner .col-right-b .txt {
    font-size: 19px;
  }
  
  .section-cursos .row {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .section-destaque .col-left-b {
    width: 55%;
  }
  
  .section-destaque .col-right-b {
    width: 42%;
  }
  
  .section-destaque .col-left-b .title {
    font-size: 48px;
  }
  
  .section-destaque .col-left-b .txt {
    font-size: 18px;
  }
}

/* 1280px */
@media (min-width: 80em) {
  .content {
    width: 80%;
    margin: 0 10%;
  }
  
  .section-banner .col-left-b {
    width: 38%;
  }
  
  .section-banner .col-right-b {
    width: 58%;
  }
  
  .section-destaque .col-left-b {
    width: 58%;
  }
  
  .section-destaque .col-right-b {
    width: 38%;
  }
  
  .agendamento {
    width: 21%;
    margin-right: 2.66%;
  }
  
  .agendamento:nth-of-type(2n) {
    margin-right: 2.66%;
  }
  
  .agendamento:nth-of-type(4n) {
    margin-right: 0;
  }
}

/* 1366px */
@media (min-width: 85.375em) {
  .content {
    width: 75%;
    margin: 0 12.5%;
  }
}