@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
:root {
  --primary-color: #0db7b7;
  --text-black: #222222;
  --paragraph: #555;
  --title: #191919;
  --text-white: white;
  --bg-white: #FFFFFF;
  --hover-color: #0db7b7;
  --active-border: 1px solid var(--primary-color);
  --transition-speed: 0.3s;
  --font-family-secondary: "Ubuntu", sans-serif;
  --font-family-primary: "Archivo", sans-serif;
}
body, html {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-primary);
}

/* ========= ESTILOS BASE ========= */
header {
  background: var(--text-white);
  padding: 12px 50px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin-left: 10%;
}

.logo {
  flex: 0 30%;
}

.logo img {
  width: 35%;
}

nav {
  flex: 1;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: var(--text-black);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding-bottom: 5px;
  padding-right: 10px;
  transition: color var(--transition-speed) ease, border-bottom var(--transition-speed) ease;
}

nav ul li a.active {
  color: var(--primary-color);
  border-bottom: var(--active-border);
}

nav ul li a:hover:not(.active) {
  color: var(--hover-color);
  border-bottom: var(--active-border);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-right .btn {
  background: var(--text-black);
  color: var(--text-white);
  padding: 15px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
  text-transform: uppercase;
  transition: all .2s ease;
}
.nav-right .btn:hover {
  background-color: var(--hover-color);
}

.signin {
  text-decoration: none;
  color: var(--text-black);
  transition: color var(--transition-speed) ease;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}
.signin:hover {
  color: var(--hover-color);
}

.nav-right span {
  cursor: pointer;
  transition: color var(--transition-speed) ease;
}
.nav-right span:hover {
  color: var(--hover-color);
}

/* ========= MENU HAMBÚRGUER ========= */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-black);
}

/* ========= RESPONSIVIDADE ========= */
@media (max-width: 992px) {
  nav ul {
    gap: 15px;
    font-size: 14px;
  }
  .logo img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    width: 100%;
    margin-left: 0;
  }

  nav {
    width: 100%;
    order: 3;
    height: 0;
    transition: all .2s ease-in;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
  }

  .nav-right {
    order: 2;
  }

  .menu-toggle {
    display: block;
    order: 1;
  }

  /* quando ativo */
  nav.active {
    height: 25vh;
    transition: all .2s ease-out;
  }

  .nav-right .btn {
    padding: 12px 20px;
  }
}

/* #HERO ###########################################################################*/
.hero {
  /*background: 
    linear-gradient(to right, rgba(0,0,0,0.55) 20%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0) 100%),
    url('../img/header.jpg') center/cover no-repeat;*/
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  color: var(--text-white);
  position: relative;
}

.hero .overlay {
  width: 80%;
  max-width: 1200px;
  height: inherit;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  animation: fadeInUp 1s ease forwards;
}

.hero h1 {
  font-size: 72px;
  font-weight: bold;
  line-height: 1.1;
  font-family: var(--font-family-primary);
  margin-bottom: 20px;
}

/* OVAL em volta do texto do span */
.hero h1 span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  inset: -.25em -.4em -.18em -.4em;
  border: 12px solid var(--primary-color);
  border-radius: 9999px;
  transform: rotate(-6deg);
  pointer-events: none;
  z-index: -1;
}

.hero p {
  font-size: 21px;
  max-width: 560px;
  line-height: 1.5em;
  font-weight: 300;
  margin-bottom: 30px;
  color: var(--text-white);
}

.search-box {
  display: flex;
  align-items: center;
  margin-top: 10px;
  max-width: 560px;
  background: var(--bg-white);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,.08);
  animation: fadeInUp 1.2s ease forwards;
}

.search-box input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
}

.search-box input::placeholder {
  color: #8a8a8a;
}

.search-box button {
  background: var(--primary-color);
  color: var(--text-white);
  border: none;
  padding: 16px 22px;
  font-weight: 700;
  letter-spacing: .3px;
  cursor: pointer;
  transition: filter .2s ease, opacity .2s ease, transform .05s ease;
}
.search-box button:hover { filter: brightness(1.05); }
.search-box button:active { transform: translateY(1px); }

/* Animação */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Ajustes em telas menores */
@media (max-width: 992px) {
  .hero h1 { font-size: 52px; }
  .hero p { width: 70%; font-size: 18px; }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
    height: auto;
    padding: 100px 20px;
  }

  .hero .overlay {
    text-align: center;
    align-items: center;
  }

  .hero h1 { font-size: 38px; }
  .hero h1 span::after {
    border-width: 8px;
    inset: -.2em -.5em -.15em -.5em;
  }

  .hero p {
    width: 100%;
    font-size: 16px;
  }

  .search-box {
    width: 100%;
    max-width: 100%;
  }
}

/* #FEATURE ###########################################################################*/
.features {
  background: var(--bg-white);
  padding: 60px 0;
}

.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  background: var(--bg-white);
  color: #333;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(238, 237, 237, 0.884);
  text-align: left;
  transition: transform .3s ease, box-shadow .3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.feature-box i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 18px;
}

.feature-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-box p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.feature-box a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
  font-size: 12px;
}

.feature-box a:hover {
  color: var(--hover-color);
}

/* #ABOUT ###########################################################################*/
.about {
  padding: 60px 0;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 80%;
  margin: 0 auto;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  object-fit: cover;
  border-style: solid;
  border-color: var(--primary-color);

  /* bordas com espessuras diferentes */
  border-top-width: 12px;
  border-right-width: 12px;
  border-bottom-width: 0px;
  border-left-width: 0px;

  /* radius apenas em 2 cantos */
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
}


.experience-badge {
  position: absolute;
  top: -30px;
  left: -30px;
  background: #fff;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  text-align: center;
}

.experience-badge h2 {
  margin: 0;
  font-size: 32px;
  color: var(--primary-color);
  font-weight: 700;
}

.experience-badge span {
  font-size: 12px;
  color: #111;
  line-height: 1.2;
}

.about-text h5 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--paragraph);
}

.about-text p {
  font-size: 15px;
  margin-bottom: 24px;
  color: var(--paragraph);
  line-height: 1.6;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

.about-feature i {
  font-size: 18px;
  color: #fff;
  background: var(--primary-color);
  border-radius: 6px;
  padding: 6px;
}

.about-feature h4 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: var(--paragraph);
}

.about-feature p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

@media (max-width: 900px) {
  .about .container {
    grid-template-columns: 1fr;
  }
  .about-image {
    order: -1;
  }
}

/* #PORQUE NOS ESCOLHER ###########################################################################*/
.porque-nos-escolher {
  background: linear-gradient(to right, rgba(255,255,255,0.95) 40%, transparent 60%),
              url('../img/cubo.jpg') no-repeat right center;
  background-size: cover;
  padding: 80px 0;
}

.porque-nos-escolher .container {
  gap: 60px;
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  max-height: 80vh;
}

.porque-nos-escolher .left,
.porque-nos-escolher .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ===== Features ===== */
.feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all .3s ease;
  padding: 30px;
  border-radius: 8px;
}

.feature .icon {
  font-size: 32px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.feature h3 {
  color: var(--paragraph);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
}

.feature p {
  font-size: 16px;
  color: var(--paragraph);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Hover bonito */
.feature:hover {
  background: var(--bg-white);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

/* ===== Textos do lado direito ===== */
.porque-nos-escolher .right h4 {
  color: var(--primary-color);
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-top: 0;
}

.porque-nos-escolher .right h2 {
  font-size: 34px;
  margin-bottom: 0px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--paragraph);
}

.porque-nos-escolher .right p {
  font-size: 16px;
  color: var(--paragraph);
  line-height: 1.6;
}

.porque-nos-escolher .right img {
  width: 100%;
  max-width: 520px;
  margin-top: 0;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* ===== Responsividade ===== */
@media (max-width: 992px) {
    .porque-nos-escolher .container {
        max-height: 160vh;
    }
  .porque-nos-escolher {
    padding: 0 0 80px 0; 
    background: #fff; /* remove gradiente no mobile */
  }
  .porque-nos-escolher .container {
    flex-direction: column;
    gap: 40px;
  }
  .porque-nos-escolher .right img {
    margin: 20px auto 0;
  }
}
@media (max-width: 576px) {
    .feature {
        padding: 10px;
    }
}

/* #JOB SECTION ###########################################################################*/
.job-section {
  position: relative;
  max-width: 100%;   /* evita ultrapassar */
  overflow-x: hidden; /* corta qualquer overflow lateral */
  height: 70vh;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.job-overlay {
  position: absolute;
  inset: 0; /* substitui top/left/width/height */
  background-color: rgba(1, 0, 94, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box; /* garante que padding não ultrapassa */
}


.job-content {
  color: #fff;
  max-width: 720px;
  z-index: 2;
}

.job-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 3px 10px rgba(0,0,0,0.5);
}

.job-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f1f1f1;
}

.job-content .btn {
  display: inline-block;
  background: var(--primary-color, #00e1ff);
  color: var(--text-white, #fff);
  font-weight: bold;
  padding: 14px 34px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.job-content .btn:hover {
  background: #fff;
  color: #01005E;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ===== Responsividade ===== */
@media (min-width: 1024px) {
  .job-section {
    background-attachment: fixed;
  }
}
@media (max-width: 992px) {
  .job-section {
    height: 200px;
    padding: 60px 20px;
    background-attachment: scroll; /* desativa parallax no mobile */
  }
  .job-content h2 { font-size: 30px; }
  .job-content p { font-size: 16px; }
}

@media (max-width: 576px) {
  .job-content h2 { font-size: 24px; }
  .job-content p { font-size: 14px; }
  .job-content .btn {
    padding: 12px 26px;
    font-size: 14px;
    width: 85%;
  }
}

/* #JOB LISTING ###########################################################################*/
.job-listing {
  background: #f7f7f7;
  padding: 80px 0;
}

.job-listing .container {
  width: 85%;
  margin: 0 auto;
}

.job-listing h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 8px;
}

.job-listing p {
  font-size: 15px;
  margin-bottom: 24px;
  color: var(--paragraph);
  line-height: 1.6;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===== Job Card ===== */
.job-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.job-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.company-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
  background: #f4f4f4;
  padding: 6px;
}

.job-card hr {
  margin: 15px 0;
  border: none;
  border-top: 1px solid #eee;
}

/* ===== Footer ===== */
.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.job-info {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: #444;
}

.job-info i {
  margin-right: 5px;
  color: var(--primary-color, #01005E);
}

/* Badge (tempo, remoto, etc) */
.badge {
  display: inline-block;
  background: var(--primary-color, #00e1ff);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.job-card .btn {
  background: var(--primary-color, #00e1ff);
  color: var(--text-white, #fff);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  white-space: nowrap;
}

.job-card .btn:hover {
  background: #01005E;
  transform: scale(1.05);
}

/* ===== Paginação ===== */
.pagination {
  margin-top: 40px;
  text-align: center;
}

.pagination a {
  display: inline-block;
  padding: 10px 16px;
  margin: 0 5px;
  border-radius: 6px;
  background: #fff;
  color: #01005E;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid #ddd;
  transition: all 0.3s;
}

.pagination a.active,
.pagination a:hover {
  background: var(--primary-color, #01005E);
  color: #fff;
}

/* ===== Responsividade ===== */
@media (max-width: 992px) {
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .jobs-grid {
    grid-template-columns: 1fr;
  }
  .job-card {
    padding: 20px;
  }
}

/* F.A.Q ##################################################################################################### */
.faq {
  padding: 80px 0;
  width: 80%;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: flex-start;
}

/* ===== Texto ===== */
.faq-text h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color, #01005E);
  margin-bottom: 8px;
}

.faq-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-black, #222);
}

.faq-text p {
  font-size: 15px;
  margin-bottom: 24px;
  color: var(--paragraph, #555);
  line-height: 1.6;
}

/* ===== FAQ Items ===== */
.faq-item {
  border: 1px solid #ddd;
  margin-bottom: 12px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f9f9f9;
}

.faq-question i {
  color: var(--primary-color, #00e1ff);
  transition: transform 0.3s ease;
}

/* ===== Resposta ===== */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
  font-size: 15px;
  color: var(--paragraph, #555);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 15px 20px;
}

/* ===== Estado ativo ===== */
.faq-item.active .faq-question {
  background: linear-gradient(90deg, #01005E, var(--primary-color));
  color: #fff;
}

.faq-item.active .faq-question i {
  color: #fff;
  transform: rotate(180deg); /* 🔥 rotação do ícone ao abrir */
}

/* ===== Responsividade ===== */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq {
    width: 90%;
  }
}

/* BANNER ##################################################################################################### */
.banner {
  position: relative;
  color: #fff;
  padding: 120px 20px;
  text-align: left;
  overflow: hidden;
}

.banner-content {
  width: 80%;
  margin-left: 10%;
  max-width: 1200px;
  animation: fadeInUp 1s ease forwards;
}

.banner-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.banner-content p {
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 1.6;
  font-weight: 300;
  width: 45%;
  min-width: 280px; /* garante legibilidade em telas menores */
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,198,255,0.4);
}

.btn-primary:hover {
  background: var(--hover-color);
  box-shadow: 0 6px 16px rgba(0,198,255,0.6);
  transform: translateY(-2px);
}

/* ===== Animação ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsividade ===== */
@media (max-width: 992px) {
  .banner-content h1 {
    font-size: 36px;
  }
  .banner-content p {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .banner {
    text-align: center;
    padding: 80px 15px;
  }
  .banner-content {
    margin: 0 auto;
    width: 100%;
  }
  .banner-content h1 {
    font-size: 28px;
  }
  .banner-content p {
    font-size: 16px;
    margin: 0 auto 25px;
  }
}


/* NEWSLETTER & FOOTER ##################################################################################################### */
.newsletter-footer {
  padding: 50px 20px;
  color: var(--text-white);
  background-image: 
    radial-gradient(at top center, #01005E 40%, #191919 100%),
    linear-gradient(to right, rgba(25,25,25,1) 10%, rgba(25,25,25,0.8) 30%, rgba(25,25,25,0.2) 70%, rgba(25,25,25,0) 100%),
    url('../img/BG-Footer.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  text-align: left;
  margin-bottom: 50px;
  width: 80%;
  margin-left: 10%;
}

.newsletter-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
}

.newsletter-content form {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-content input {
  padding: 12px;
  border: none;
  border-radius: 6px;
  width: 280px;
  max-width: 100%;
  outline: none;
  background: #fff;
  color: #333;
}

.newsletter-content input:focus {
  border: 2px solid var(--hover-color);
}

.newsletter-content button {
  background: var(--primary-color);
  color: #fff;
  padding: 12px 22px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.newsletter-content button:hover {
  background: var(--hover-color);
  transform: translateY(-2px);
}

/* Separador */
.newsletter-footer hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 20px auto;
  width: 80%;
}

/* Footer */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
  width: 80%;
  margin-left: 10%;
}

.footer-about h4,
.footer-links h4,
.footer-contact h4 {
  color: var(--text-white);
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a,
.footer-about p {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 15px;
  line-height: 1.6;
}

.footer-links ul li a:hover {
  color: var(--hover-color);
}

/* Redes sociais */
.social-icons{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--text-white);
  font-size: 18px;
  margin-right: 10px;
  border-radius: 50%;
  border: 1px solid #555;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: var(--hover-color);
  border-color: var(--hover-color);
  transform: scale(1.1);
}

/* Contacto */
.footer-contact p {
  margin-bottom: 10px;
}

/* Rodapé inferior */
.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #aaa;
  padding-top: 20px;
}

/* ===== Responsividade ===== */
@media (max-width: 768px) {
  .newsletter-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .newsletter-content form {
    justify-content: center;
  }
  .newsletter-content h3 {
    margin-bottom: 15px;
  }
  .footer-container{
    width: 100%;
    margin-left: 0;
  }
  .footer-about h4,
  .footer-links h4,
  .footer-contact h4 {
    font-size: 16px;
  }
  .social-icons{
    justify-content: center;
  }
}

/* SCROOL TO TOP BUTTON ##################################################################################################### */

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary-color);
  color: var(--text-white);
  border: none;
  padding: 12px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

#scrollTopBtn:hover {
  background: #0096cc; /* tom mais escuro no hover */
}
/* SCROOL TO TOP BUTTON ##################################################################################################### */
/* Estilo base */
.alert {
  padding: 15px 20px;
  border-radius: 6px;
  margin: 15px 0;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeIn 0.5s ease-in-out;
}

/* Tipos de alerta */
.alert.success {
  background: #e6f9f0;
  border: 1px solid #27ae60;
  color: #2d8659;
}

.alert.error {
  background: #fdecea;
  border: 1px solid #c0392b;
  color: #a8322a;
}

.alert.warning {
  background: #fff4e5;
  border: 1px solid #e67e22;
  color: #b35a00;
}

.alert.info {
  background: #eaf4fd;
  border: 1px solid #2980b9;
  color: #21618c;
}


/* Animação de entrada */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
