/*

Tooplate 2119 Gymso Fitness

https://www.tooplate.com/view/2119-gymso-fitness

*/


  @font-face {
      font-family: 'Plain';
      src: url('../fonts/Plain-Regular.woff2') format('woff2'),
          url('../fonts/Plain-Regular.woff') format('woff');
      font-weight: normal;
      font-style: normal;
  }

  @font-face {
      font-family: 'Plain';
      src: url('../fonts/Plain-Light.woff2') format('woff2'),
          url('../fonts/Plain-Light.woff') format('woff');
      font-weight: 300;
      font-style: normal;
  }

  @font-face {
      font-family: 'Plain';
      src: url('../fonts/Plain-Bold.woff2') format('woff2'),
          url('../fonts/Plain-Bold.woff') format('woff');
      font-weight: bold;
      font-style: normal;
  }

  :root {
    --primary-color:        #c60600;
    --white-color:          #ffffff;
    --dark-color:           #171819;
    --about-bg-color:       #f9f9f9;

    --gray-color:           #909090;
    --link-color:           #404040;
    --p-color:              #666262;

    --base-font-family:     'Plain', sans-serif;
    --font-weight-bold:     bold;
    --font-weight-normal:   normal;
    --font-weight-light:    300;
    --font-weight-thin:     100;

    --h1-font-size:         48px;
    --h2-font-size:         36px;
    --h3-font-size:         28px;
    --h4-font-size:         24px;
    --h5-font-size:         22px;
    --h6-font-size:         22px;
    --p-font-size:          18px;
    --base-font-size:       16px;
    --menu-font-size:       14px;

    --border-radius-large:  100%;
    --border-radius-small:  2px;
  }
  body {
    background: var(--white-color);
    font-family: var(--base-font-family);
  }


  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

  h1,h2,h3,h4,h5,h6 {
    font-weight: var(--font-weight-thin);
    line-height: normal;
  }

  h1 {
    font-size: var(--h1-font-size);
    font-weight: var(--font-weight-bold);
    letter-spacing: -1px;
    text-transform: uppercase;
    margin: 20px 0;
  }

  h2 {
    font-size: var(--h2-font-size);
    font-weight: var(--font-weight-bold);
    letter-spacing: -2px;
  }

  h3 {
    font-size: var(--h3-font-size);
    font-weight: var(--font-weight-bold);
    letter-spacing: -1px;
    margin: 0;
  }

  h4 {
    font-size: var(--h4-font-size);
  }

  h5 {
    font-size: var(--h5-font-size);
  }

  h6 {
    color: var(--gray-color);
    font-size: var(--h6-font-size);
    line-height: inherit;
    margin: 0;
  }

  p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
    line-height: 1.5em;
  }

  b, 
  strong {
    font-weight: var(--font-weight-bold);
    letter-spacing: 0;
  }

  .section {
    padding: 7rem 0;
  }


  /* BUTTON */

  .custom-btn {
    background: transparent;
    border-radius: var(--border-radius-small);
    padding: 14px 24px;
    color: var(--white-color);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: all 0.3s ease;
  }

  .custom-btn:hover {
    color: var(--primary-color);
  }

  .custom-btn:focus {
    box-shadow: none;
  }

  .custom-btn.bordered:hover,
  .custom-btn.bordered:focus,

  .custom-btn.bg-color:hover,
  .custom-btn.bg-color:focus {
    background: var(--white-color);
    border-color: transparent;
    color: var(--primary-color);
  }

  .bordered {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
  }

  .bg-color {
    background: var(--primary-color);
    color: var(--white-color);
  }



  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  *::before,
  *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  a {
    color: var(--link-color);
    font-weight: normal;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  a:hover, 
  a:active, 
  a:focus {
    color: var(--primary-color);
    outline: none;
    text-decoration: none;
  }


  /* BG OVERLAY */

  .bg-overlay {
    background: var(--dark-color);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
  }


:root {
  --primary-color: #ff4b3e; /* Azul Marinho */
  --accent-color: #bf0000;   /* Vermelho América */
  --light-color: #ffffff;
  --dark-bg: #001f3f;
}

/* Modal Content */
.modal-content {
  position: fixed;
  top: calc(50% + 48px); /* 50% da tela + metade da altura combinada das barras fixas */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11000;

  background: var(--dark-bg);
  color: var(--light-color);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  animation: modalFadeIn 0.4s ease-in-out;

  max-width: 600px;
  width: 90%;
  max-height: calc(90vh - 96px); /* evita ultrapassar as barras fixas */
  overflow-y: auto;
}

/* Header, Body, Footer */
.modal-header,
.modal-body,
.modal-footer {
  border: none;
  padding: 1rem 0;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light-color);
}

.modal-header .close {
  color: #fff;
  font-size: 1.5rem;
  opacity: 0.8;
  transition: 0.3s;
  cursor: pointer;
}

.modal-header .close:hover {
  opacity: 1;
}

/* Form Style */
#quoteForm .form-group label {
  color: #eee;
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: block;
}

#quoteForm .form-control {
  background-color: #0d274d;
  color: #fff;
  border: 1px solid #446;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: 0.3s;
  margin-bottom: 1rem;
}

#quoteForm .form-control::placeholder {
  color: #bbb;
}

#quoteForm .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 75, 62, 0.3);
  outline: none;
}

/* Submit Button */
#quoteForm button[type="submit"] {
  background: var(--accent-color);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  width: 100%;
  transition: background 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

#quoteForm button[type="submit"]:hover {
  background: #e13a2f;
  transform: scale(1.02);
}

/* Checkbox */
.form-check-label {
  color: #ccc;
  font-size: 0.9rem;
}

.form-check-label a {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Modal Footer */
.modal-footer {
  font-size: 0.9rem;
  color: #aaa;
}

/* Animation */
@keyframes modalFadeIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 576px) {
  .modal-content {
    padding: 1.5rem;
    width: 95%;
    max-width: none;
    max-height: 90vh;
  }

  .modal-title {
    font-size: 1.5rem;
    
  .modal-header {
    position: relative; /* para o botão se posicionar dentro */
  }

  .modal-header .close {
    font-size: 2.2rem;
    top: 0.8rem;
    right: 0.8rem;
  }    
  }
}



  
  /* ----- testimonial ------ */
  
    .testimonial {
      transition: transform 0.3s ease;
    }
    
    .testimonial:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    
    .testimonial i {
      font-size: 1rem;
    }
  
  
  /* --------- Telefone --------- */
  
    .call-button {
      position: fixed;
      bottom: 20px;
      left: 20px;
      background-color: #bf0000; /* Verde ou troque pela cor da marca */
      color: #fff;
      font-size: 22px;
      padding: 15px;
      border-radius: 35%;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      z-index: 999;
      text-align: center;
      transition: all 0.3s ease;
    }
    
    .call-button:hover {
      background-color: #218838;
      transform: scale(1.1);
      text-decoration: none;
    }
    
    /* ------ Works ----- */
    
    .work-item {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      cursor: pointer;
    }
    
    .work-item img {
      transition: transform 0.3s ease;
    }
    
    .work-item:hover img {
      transform: scale(1.05);
    }
    
    .work-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 105, 180, 0.6); /* Rosa transparente */
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2rem;
      opacity: 0;
      transition: all 0.3s ease;
      text-align: center;
      padding: 1rem;
    }
    
    .work-item:hover .work-overlay {
      opacity: 1;
    }
        
  


  /*---------------------------------------
    FEATURE          
  -----------------------------------------*/

  .feature {
    background: var(--dark-color);
    padding: 5rem 0;
  }


/* Navbar fixada abaixo da top-bar */
.navbar {
  position: fixed;
  top: 40px; /* altura da top-bar */
  left: 0;
  width: 100%;
  background: #fff;
  height: 80px;
  z-index: 1060;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 0 1rem;
  border-bottom: 1px solid #ddd;
}

/* Container navbar flex */
.navbar > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Logo */
.navbar-brand img {
  height: 70px;
  width: auto;
}

/* Navbar nav (menu) */
.navbar-nav {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

/* Links do menu */
.navbar-nav .nav-link {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #dc3545;
}

/* Botão hamburger */
.navbar-toggler {
  display: none; /* só mostra no mobile */
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
  z-index: 1100;
}

/* Icon hamburger: 3 barras */
.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  display: block;
  background-color: #dc3545;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  position: absolute;
  transition: all 0.3s ease;
}

.navbar-toggler-icon {
  top: 50%;
  transform: translateY(-50%);
}

.navbar-toggler-icon::before {
  content: '';
  top: -8px;
  left: 0;
}

.navbar-toggler-icon::after {
  content: '';
  top: 8px;
  left: 0;
}

/* Estado aberto (quando toggler tem class active) */
.navbar-toggler.active .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler.active .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler.active .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Responsivo - mobile até 991px */
@media (max-width: 991px) {
  /* mostra hamburger */
  .navbar-toggler {
    display: flex;
  }
  
  .navbar {
    top: 85px;
  }
  
  /* esconde menu padrão */
  .navbar-collapse {
    display: none;
    position: fixed;
    top: 120px; /* 40 top-bar + 80 navbar */
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem 2rem;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
    flex-direction: column;
    gap: 1rem;
    z-index: 1055;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
  
  /* Quando menu aberto */
  .navbar-collapse.show {
    display: flex;
  }
  
  /* Menu links vertical no mobile */
  .navbar-nav {
    flex-direction: column;
    gap: 1rem;
    margin-left: 0;
    top: 80px;
  }
}


  /*---------------------------------------
     HERO              
  -----------------------------------------*/

  .hero {
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    vertical-align: middle;
    min-height: 100vh;
    position: relative;
  }


/*---------------------------------------
   CLASS               
-----------------------------------------*/

.class-info {
  background: var(--white-color);
  box-shadow: 6px 0 38px rgba(20,20,20,0.10);
  border-radius: 0 0 2px 2px;
  padding: 1rem 2rem;
  position: relative;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Badge para o mais vantajoso */
.class-thumb.best-value::before {
  content: "Most Popular";
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  z-index: 10;
}

/* Destaque no card do mais vantajoso */
.class-thumb.best-value .class-info {
  background-color: #f0f8ff; /* azul claro */
  border: 2px solid var(--primary-color);
  box-shadow: 0 6px 25px rgba(0, 123, 255, 0.3);
}

/* TransiÃ§Ã£o no card inteiro */
.class-thumb {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
  background-color: var(--white-color);
  box-shadow: 6px 0 38px rgba(20,20,20,0.10);
}

/* Efeito ao passar o mouse */
.class-thumb:hover {
  background-color: #f8f9fa; /* cinza claro */
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

/* Outras regras jÃ¡ existentes */
.class-info img {
  border-radius: 2px 2px 0 0;
}

.class-info strong {
  color: var(--gray-color);
}

.class-price {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  display: block;
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  text-align: center;
}



  /*---------------------------------------
     SCHEDULE             
  -----------------------------------------*/

  .schedule {
    background: var(--dark-color);
  }

  .schedule-table {
    display: table;
    border: 0;
    text-align: center;
  }

  .schedule-table strong,
  .schedule-table span {
    display: block;
    text-align: center;
  }

  .schedule-table strong {
    color: var(--white-color);
  }

  .schedule-table span {
    color: var(--gray-color);
  }

  .schedule-table span,
  .schedule-table small {
    font-size: var(--menu-font-size);
    text-transform: uppercase;
  }

  .schedule-table small {
    position: relative;
    top: 10px;
  }

  .table .thead-light th,
  .schedule-table tr td:first-child {
    background: var(--primary-color);
    border: 1px solid #212122;
    color: var(--white-color);
  }

  .schedule-table .thead-light th {
    border-bottom: 0;
    text-transform: uppercase;
  }

  .table-bordered td, 
  .table-bordered th {
    border: 1px solid #212122;
  }

  .table-bordered td {
    padding-bottom: 22px;
  }

  .table td, .table th {
    padding: 1rem;
  }


  /*---------------------------------------
      ABOUT & TEAM            
  -----------------------------------------*/

  .about {
    background: var(--about-bg-color);
  }

  .about-working-hours {
    border-left: 2px solid;
    padding-left: 3.5rem;
  }

  .about-working-hours strong {
    color: var(--white-color);
    opacity: 0.85;
  }

  .team-thumb {
    position: relative;
  }

  .team-info {
    background: var(--white-color);
    border-radius: 0 0 2px 2px;
    box-shadow: 6px 0 38px rgba(20,20,20,0.10);
    padding: 20px;
    position: relative;
  }

  .team-info span {
    font-weight: var(--font-weight-light);
    opacity: 0.85;
  }

  .team-info .social-icon {
    position: absolute;
    top: 10px;
    right: 20px;
  }

  .team-info .social-icon li {
    display: block;
  }


  /*---------------------------------------
     CONTACT              
  -----------------------------------------*/

  .webform input,
  button#submit-button {
    height: calc(2.25rem + 20px);
  }

  .form-control {
    border-radius: var(--border-radius-small);
    margin: 1.3rem 0;
  }

  .form-control:focus {
    box-shadow: none;
    border-color: var(--dark-color);
  }

  button#submit-button {
    background: var(--dark-color);
    border-color: transparent;
    color: var(--white-color);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  button#submit-button:hover {
    background: var(--primary-color);
  }

  .contact h2 + p {
    max-width: 90%;
  }

  .google-map {
    border-top: 1px solid #efebeb;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
  }

  .google-map iframe {
    width: 100%;
  }

.site-footer {
  background-color: #001f3f; /* azul escuro patriÃ³tico */
  color: #ddd;
  padding: 4rem 1rem 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-column h4 {
  font-size: 1.3rem;
  color: #ff4b3e; /* vermelho dos EUA */
  margin-bottom: 1rem;
  border-bottom: 2px solid #ff4b3e;
  display: inline-block;
  padding-bottom: 0.2rem;
}

.footer-column p {
  margin: 0.4rem 0;
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
}

.footer-column strong {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 2rem;
  margin-top: 3rem;
  color: #aaa;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column {
    width: 100%;
  }

  .footer-bottom {
    text-align: left;
  }
}

  
  
#how-it-works {
  background-color: #f8f9fa; /* fundo claro */
  color: #212529; /* texto principal preto */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 60px 0;
}

#how-it-works .heading-black {
  color: #002868; /* azul escuro da bandeira */
  font-weight: 700;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 20px;
}

#how-it-works .lead {
  color: #495057; /* cinza escuro para legibilidade */
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 50px;
}

.steps-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
}

.step-col {
  position: relative;
  padding: 0 15px;
  text-align: center;
  flex: 1 1 25%;
  max-width: 25%;
  margin-bottom: 40px;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #bf0000; /* vermelho bandeira */
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 15px;
  box-shadow: 0 8px 20px rgba(191, 10, 48, 0.6);
  user-select: none;
  z-index: 2;
  transition: transform 0.3s ease;
}

.step-number:hover {
  transform: scale(1.1);
}

.step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #212529; /* tÃ­tulo preto */
  margin-bottom: 10px;
}

.step-desc {
  font-size: 1rem;
  color: #495057; /* descriÃ§Ã£o cinza escuro */
  max-width: 280px;
  margin: 0 auto;
}

/* Linha pontilhada animada entre os cards */
.steps-row .step-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px;
  right: -25px;
  width: 50px;
  height: 3px;
  background: repeating-linear-gradient(
    to right,
    #002868,
    #002868 10px,
    transparent 10px,
    transparent 20px
  );
  animation: dashmove 2s linear infinite;
  z-index: 1;
}

/* AnimaÃ§Ã£o da linha pontilhada */
@keyframes dashmove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 20px 0;
  }
}

/* Responsividade */
@media (max-width: 991px) {
  .step-col {
    max-width: 50%;
    flex: 1 1 50%;
  }
}

@media (max-width: 767px) {
  .steps-row {
    flex-direction: column;
  }

  .step-col {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .steps-row .step-col:not(:last-child)::after {
    display: none;
  }
}

/* Section styling */
#features {
  background-color: #f8f9fa;
  padding: 80px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Titles */
#features h2 {
  font-weight: 800;
  color: #000;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#features h6 {
  color: #555;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Feature card layout */
.feature-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* Bolinhas com Ã­cones */
.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #002868;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Cores individuais por classe */
.box-primary .feature-icon {
  background-color: #007bff;
}

.box-success .feature-icon {
  background-color: #28a745;
}

.box-danger .feature-icon {
  background-color: #dc3545;
}

.box-info .feature-icon {
  background-color: #17a2b8;
}

/* ConteÃºdo ao lado */
.feature-content h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

/* Responsivo */
@media (max-width: 768px) {
  .feature-boxes {
    grid-template-columns: 1fr;
  }

  .feature-card {
    flex-direction: row;
    text-align: left;
  }
}

.cta-section {
  background-color: #000;
  padding: 80px 0;
  color: #fff;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.cta-section p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 30px;
  max-width: 500px;
}

.cta-section .btn-light {
  padding: 12px 24px;
  font-weight: 600;
  background-color: #f1f1f1;
  color: #000;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

.cta-section .btn-light:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-2px);
}

.cta-section img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  max-width: 100%;
  height: auto;
}

/* Responsivo */
@media (max-width: 768px) {
  .cta-section .row {
    flex-direction: column;
    text-align: center;
  }

  .cta-section .text-content,
  .cta-section .image-content {
    width: 100%;
    margin-bottom: 30px;
  }
}

/* pricing section - tema claro patriÃ³tico */
/* pricing section - tema escuro patriÃ³tico */

.pricing-section {
  position: relative;
  background-color: #001f3f; /* Azul escuro - fundo da section */
  color: #ddd; /* texto claro para contraste */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding-bottom: 4rem;
  padding: 6rem 0 4rem 0;
  overflow: hidden;
}

.background-slant {
  position: absolute;
  top: -150px;
  left: -100px;
  width: 150%;
  height: 600px;
  background: linear-gradient(135deg, #001f3f 0%, #ff4b3e 100%);
  transform: rotate(-4deg);
  border-radius: 40px;
  opacity: 0.08;
  z-index: 1;
}

.pricing-section > .container {
  position: relative;
  z-index: 2;
  max-width: 1200px; /* aumentei a largura pra caber mais cards lado a lado */
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  font-size: 2.75rem;
  color: #bf0000 ; /* vermelho EUA no tÃ­tulo */
  font-weight: 700;
  margin-bottom: 0.3rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #bbb; /* cinza claro para subtÃ­tulo */
  font-weight: 500;
  margin-bottom: 3rem;
  text-align: center;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap; /* Permite quebrar linha */
  justify-content: center; /* Centraliza os cards */
  gap: 2rem; /* EspaÃ§amento entre cards */
  padding: 0 1rem;
  overflow-x: hidden; /* Tira scroll horizontal */
}

.pricing-cards::-webkit-scrollbar-thumb {
  background-color: #bf0000 ;
  border-radius: 4px;
}

.pricing-card {
  background: #0d0e0f; /* Chumbo */
  border-radius: 20px;
  padding: 3rem 2rem;
  width: 100%;
  max-width: 360px; /* Largura mÃ¡xima do card */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  color: #ddd;
  flex-grow: 1;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 75, 62, 0.4);
}

.pricing-card > h3.card-title,
.pricing-card > p.price {
  text-align: center;
  width: 100%;
}

.card-title {
  font-size: 1.9rem;
  color: #bf0000 ; /* tÃ­tulo em vermelho */
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #bf0000 ; /* preÃ§o em vermelho */
  margin-bottom: 2rem;
}

.price span {
  font-weight: 900;
}

.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
  width: 100%;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #bbb; /* cinza claro para as features */
  text-align: left;
}

.features-list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.features-list li::before {
  content: 'âœ”';
  color: #bf0000 ; /* check em vermelho */
  position: absolute;
  left: 0;
  top: 2px;
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1;
}

/* BotÃµes */
.pricing-card .btn-primary {
  align-self: stretch;
  width: 100%;
  text-align: center;
  margin-top: auto;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  transition: 0.2s;
  background-color: #bf0000 ; /* vermelho EUA */
  color: white;
  border: none;
}

.pricing-card .btn-primary:hover {
  background-color: #e03e30;
  opacity: 0.9;
}

/* Pricing Info */
.pricing-info {
  max-width: 720px;
  margin: 4rem auto 0;
  text-align: center;
  color: #ccc;
}

.pricing-info h4 {
  font-size: 2rem;
  color: #ff4b3e;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-info p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #bbb;
}

.pricing-info ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  color: #bbb;
  font-weight: 500;
}

.pricing-info ul li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.pricing-info ul li::before {
  content: 'âœ”';
  color: #ff4b3e;
  position: absolute;
  left: 0;
  top: 3px;
  font-weight: 900;
  font-size: 1.3rem;
  line-height: 1;
}

/* Responsivo */
@media (max-width: 992px) {
  .pricing-cards {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 1rem;
  }
}

@media (max-width: 580px) {
  .pricing-card {
    width: 300px;
    padding: 2.5rem 1.5rem;
  }
}

/* ---------- TOP-BAR (NÃO FIXA) ---------- */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #dc3545;
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  z-index: 1050;
  height: 40px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.top-bar .info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-weight: 600;
}

.top-bar .info i {
  margin-right: 0.3rem;
}

/* Ícones sociais */
.top-bar .social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Links das redes sociais */
.top-bar .social-icons a {
  color: white;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s;
}

.top-bar .social-icons a:hover {
  color: #ffc107;
}

/* Google Translate Element */
#google_translate_element {
  display: inline-block;
  margin-left: 15px;
}

/* Esconde a barra superior padrão do Google Translate */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

/* Ajusta o corpo para não ficar deslocado pela barra do Google */
body {
  top: 0 !important;
}

/* Geral: reduz fonte e personaliza visual */
.goog-te-gadget {
  font-size: 0 !important; /* esconde o texto */
  display: flex;
  align-items: center;
}
.goog-te-gadget img {
    width: 0px !important;
    height: 0px !important;
    display: inline-block !important;
}

.top-bar .social-icons a {
    color: #dc3545;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s;
}

/* Seletor: escondido no mobile, visível no desktop */
@media (max-width: 576px) {
  .goog-te-gadget .goog-te-combo {
    font-size: 0 !important;
    height: 24px !important;
    width: 24px !important;
    background: url('https://www.gstatic.com/images/branding/product/1x/translate_24dp.png') no-repeat center center;
    background-size: 18px;
    color: transparent;
    border: none;
    appearance: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
  }
}


@media (max-width: 576px) {
  .top-bar {
    height: 85px;
    z-index: 1065;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem 0;
    align-items: center;
    text-align: center;
  }

  .top-bar .info,
  .top-bar .social-icons {
    justify-content: center;
  }

  /* Oculta o texto e o select no celular, deixa só o ícone do Google */
  .goog-te-gadget-simple span,
  .goog-te-gadget-simple select {
    display: none !important;
  }

    .goog-te-gadget img {
        width: 0px !important;
        height: 0px !important;
        display: inline-block !important;
    }

  #google_translate_element {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}


