:root {
  --gold: #d4af37;
  --gold-dark: #b8941f;
  --gold-light: #f4e4b8;
  --bronze: #8b6914;
  --black: #0a0a0a;
  --dark-gray: #1a1a1a;
  --medium-gray: #2d2d2d;
  --light-gray: #a8a8a8;
  --white: #ffffff;
  --cream: #f8f5ed;
  --accent-teal: #5a8f8a;
  --text-color: #333333;  /* Cor principal para textos */
  --white-background-alt: #fafafa; /* Para tabelas e backgrounds alternativos */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Raleway', sans-serif;
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.15);
  --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.1);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-display: swap; /* ✅ garante que o texto apareça imediatamente */
  font-weight: 900;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2") format("woff2");
  font-display: swap;
}

/* Isso deve ser incluído no seu arquivo CSS, por exemplo, 'style.css' */

@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-brands-400.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    font-display: swap; 
}

@font-face {
    font-family: 'Font Awesome 6 Regular';
    font-style: normal;
    font-weight: 400;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-regular-400.woff2') format('woff2');   
    font-display: swap; 
}

/* O mesmo para fa-solid-900.woff2 */
@font-face {
    font-family: 'Font Awesome 6 Pro'; /* Ou 'Solid' dependendo da versão/tipo */
    font-style: normal;
    font-weight: 900;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-solid-900.woff2') format('woff2');   
    font-display: swap; 
}

/* 1. Contenção de Layout (evita reflow) */
.hero-content,
.section-header {
  contain: layout style paint;
}


/* 5. Font loading otimizado */
@font-face {
  font-family: 'Playfair Display';
  font-display: swap;
  font-weight: 400 800;
}

@font-face {
  font-family: 'Raleway';
  font-display: swap;
  font-weight: 300 700;
}

/* 6. Skeleton loader para evitar CLS */
.skeleton-card {
  height: 400px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 0;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* 7. Redução de animações para dispositivos com preferência */
/* @media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} */

*,
*::before,
*::after {
  box-sizing: border-box; /* Garante que padding e border sejam incluídos na largura/altura */
}


/* 8. Otimização de imagens lazy-load */
img[loading="lazy"] {
  content-visibility: auto;
}

.lazy-load {
  opacity: 0;
  transition: opacity 0.3s;
}
/* 
.lazy-loaded {
  opacity: 1;
} */

/* 9. Prevenção de layout shift */
.logo-image {
  aspect-ratio: 1;
}


/* 10. Otimização de cores (reduz repaints) */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 11. Scroll suave performático */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* 12. Redução de trabalho do browser */
/* .articles-grid {
  will-change: scroll-position;
} */


/* 13. Otimização de hover states */
nav a,
.article-card,
.cta-button,
.filter-btn {
  will-change: auto;
}

nav a:hover,
.article-card:hover,
.cta-button:hover,
.filter-btn:hover {
  will-change: transform, color, background-color;
}

/* 14. Contenção de pintura para modal/banner */
#cookie-banner,
#cookie-modal {
  contain: layout style paint;
}

/* 15. Lazy rendering de elementos fora da tela */
footer,
.newsletter {
  content-visibility: auto;
  contain-intrinsic-size: 1px 500px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
 /* overflow-x: hidden;*/
}

body {
  font-family: var(--font-body);
  /* line-height: 1.7; */
  /* color: var(--black); */
  background-color: var(--cream);
  /* font-size: 16px; */
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  background: linear-gradient(180deg, var(--dark-gray) 0, var(--black) 100%);
  border-bottom: 2px solid var(--gold);
  position: fixed;
  z-index: 1000;
  /*z-index: 999999 !important;*/
  box-shadow: var(--shadow-dark);
  top: 0;  
  left: 0;
  width: 100% !important;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.logo-image {
  width: 60px;
  height: 60px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  padding: 4px;
  background: var(--black);
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, .5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-text span {
  color: var(--white);
  font-weight: 400;
}

nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}

nav a {
  font-weight: 500;
  color: var(--cream);
  position: relative;
  padding: 8px 4px;
  font-size: .95rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: .85rem;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: var(--transition);
  transform: translateX(-50%);
}

nav a:hover {
  color: var(--gold);
}

nav a:hover::before {
  width: 100%;
}

a:focus,
button:focus,
input:focus {
  outline: 2px solid var(--accent-teal);
  outline-offset: 3px;
}

.hero {
  background: linear-gradient(135deg, var(--black) 0, var(--dark-gray) 50%, var(--black) 100%);
  color: var(--cream);
  padding: 140px 0 40px;
  position: relative;
  /* overflow: hidden; */
  width: 100%;
  margin-top: 70px;
  margin-bottom: 0;
}
/* Otimizar paint times */
.hero-content,
.section-header {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, .1) 0, transparent 50%), radial-gradient(circle at 80% 50%, rgba(90, 143, 138, .1) 0, transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-ornament {
  width: 100px;
  height: 20px;
  margin: 0 auto 24px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .3;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
  color: var(--gold);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, .5);
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 36px;
  opacity: .9;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: .5px;
}

.cta-button {
  background: linear-gradient(135deg, var(--gold) 0, var(--bronze) 100%);
  color: var(--black);
  border: 2px solid var(--gold);
  padding: 16px 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  display: inline-block;
  position: relative;
}

.cta-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.cta-button:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none !important;
}

.btn-loading {
  display: none;
}

.privacy-assurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--light-gray);
  text-align: center;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
  transition: left .5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, .4);
}

.section-spacing {
  padding-top: 0;
  padding-bottom: 100px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  margin-top: 160px;
  position: relative;
}

.section-ornament {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: 0 auto 16px;
  position: relative;
}

.section-ornament::after,
.section-ornament::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--gold);
}

.section-ornament::before {
  left: -28px;
  transform: translateY(-50%) rotate(45deg);
}

.section-ornament::after {
  right: -28px;
  transform: translateY(-50%) rotate(-45deg);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--black);
  margin-bottom: 16px;
  margin-top: 1px;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-header h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--black);
  margin-bottom: 16px;
  margin-top: 1px;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--bronze);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

.newsletter {
  background: linear-gradient(135deg, var(--black) 0, var(--dark-gray) 100%);
  color: var(--cream);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  width: 100%;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, .1) 0, transparent 70%);
}

.newsletter-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter h2 {
  font-family: var(--font-display);
  margin-bottom: 16px;
  color: var(--gold);
  letter-spacing: 1px;
}

.newsletter p {
  margin-bottom: 32px;
  opacity: .9;
  font-weight: 300;
  line-height: 1.8;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.input-group input {
  border-radius: 0;
}

.input-group input:focus {
  background: rgba(255, 255, 255, .15);
  border-color: var(--gold-light);
  outline: 0;
}

.input-group input::placeholder {
  color: rgba(248, 245, 237, .6);
}

.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border: 2px solid var(--gold);
  background: rgba(255, 255, 255, .1);
  color: var(--cream);
  font-size: 1rem;
  outline: 0;
  transition: var(--transition);
  min-width: 0;
}

.newsletter-form input::placeholder {
  color: rgba(248, 245, 237, .5);
}

.newsletter-form input:focus {
  background: rgba(255, 255, 255, .15);
  border-color: var(--gold-light);
}

.newsletter-form button {
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  color: var(--black);
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .9rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

.newsletter-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.newsletter-message.error {
  background: rgba(244, 67, 54, .1);
  color: #f44336;
  border: 1px solid #f44336;
  display: block;
}

.newsletter-message.info {
  background: rgba(33, 150, 243, .1);
  color: #2196f3;
  border: 1px solid #2196f3;
  display: block;
}

.newsletter-form button:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none !important;
}

.loading-spinner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.newsletter-form input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.newsletter-form button:focus {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

.author-box {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: #f8f9fa;
  padding: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.author-photo {
  width: 150px;
  height: 150px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 40%;
  /* centraliza melhor o rosto verticalmente */
  transform: scale(0.95);
  /* pequeno afastamento para dar "respiro" */
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

footer {
  background: linear-gradient(180deg, var(--dark-gray) 0, var(--black) 100%);
  color: var(--cream);
  padding: 60px 0 24px;
  border-top: 3px solid var(--gold);
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-column h3 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 24px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
  letter-spacing: 1px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.footer-column p {
  line-height: 1.8;
  color: rgba(248, 245, 237, .7);
  font-weight: 300;
}

.footer-column ul li {
  margin-bottom: 14px;
  display: block; /* ✅ Muda para block */
  line-height: 1.8;
}

.footer-column ul li a {
  color: rgba(248, 245, 237, .7);
  transition: var(--transition);
  font-weight: 300;
}

.footer-column ul li a,
.footer-column p {
  overflow-wrap: break-word;
  word-break: break-word; /* Medida de segurança extra para navegadores mais antigos */
}

.footer-column ul li a:hover {
  color: var(--gold);
}

.footer-column ul li i {
  color: var(--gold);
  font-size: 1rem;
  width: 20px;
  display: inline-block; /* ✅ Inline-block */
  text-align: left;
  margin-right: 10px;
  vertical-align: top;
}

.footer-column ul li > :not(i) {
  flex: 1;
  min-width: 0; /* ✅ CRÍTICO: permite encolher */
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word; /* ✅ Quebra onde for necessário */
  hyphens: auto;
  line-height: 1.5;
}

.footer-column ul li a[href^="mailto:"],
.footer-column ul li a[href^="tel:"] {
  word-break: break-all; /* ✅ Quebra emails/telefones em qualquer ponto se necessário */
  hyphens: auto;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, .1);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 175, 55, .2);
  color: rgba(248, 245, 237, .5);
  font-size: .9rem;
  font-weight: 300;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

footer address {
  font-style: normal;
}

footer address a {
  color: inherit;
  text-decoration: none;
}

footer address a:hover {
  text-decoration: underline;
}

@media (min-width: 969px) {
  .menu-toggle {
    display: none !important;
  }

  .header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 0;
  }

  .logo-container {
    flex: 0 0 auto; /* Logo fixa */
    display: flex;
    align-items: center;
    gap: 16px;
  }

  nav {
    display: flex !important;
    position: static !important;
    background: none !important;
    border: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: auto !important;
    max-height: none !important;
    overflow: visible !important;
    box-shadow: none !important;
    margin-left: 0;
  }

  nav ul {
    display: flex;
    gap: 32px;
    align-items: center;
  }

  nav a {
    font-weight: 500;
    color: var(--cream);
    position: relative;
    padding: 8px 4px;
    font-size: .95rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: .85rem;
  }
}

@media (max-width: 968px) {
  .header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    gap: 16px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  nav {
    display: none !important;
  }

  nav.active {
    display: block !important;
  }


}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999999 !important;
  }

  .header-wrapper {
    padding: 16px 0;
    gap: 16px;
  }

  .logo-container {
    flex: 1;
    min-width: 0;
  }

  .logo-image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }

  .logo-text {
    font-size: 1.1rem;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.2;
    max-width: 100%;
  }

  .logo-text span {
    display: inline !important;
  }

  .menu-toggle:hover {
    transform: scale(1.15);
  }

  .menu-toggle i {
    color: var(--gold) !important;
    font-size: 1.8rem !important;
    line-height: 1 !important;
  }

  /* MENU MOBILE - SOLUÇÃO ROBUSTA */
  nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--dark-gray);
    border-top: 2px solid var(--gold);
    z-index: 1999;
    overflow-y: auto;
    max-height: calc(100vh - 80px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  }

  nav.active {
    display: block;
    position: fixed;
    top: 82px; /* Altura exata do header no mobile */
    left: 0;
    right: 0;
    width: 100%;
    background: var(--dark-gray);
    border-top: 2px solid var(--gold);
    z-index: 1000000; /* Um nível abaixo do header */
    overflow-y: auto;
    max-height: calc(100vh - 82px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  nav ul {
    flex-direction: column !important;
    padding: 20px 24px !important;
    gap: 16px !important;
    display: flex !important;
  }

  nav li {
    display: block !important;
  }

  nav a {
    display: block !important;
    padding: 12px 0 !important;
    color: var(--cream) !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
  }

  nav a::before {
    display: none !important;
  }

  nav a:hover {
    color: var(--gold) !important;
    padding-left: 8px !important;
  }

  .input-group {
    flex-direction: column;
  }

  .cta-button {
    width: 100%;
  }

  .hero {
    padding: 100px 0 30px;
  }

  .hero h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-spacing {
    padding-top: 0px;
    padding-bottom: 50px;
  }

  .section-header {
    margin-bottom: 40px;
    margin-top: 10px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .newsletter {
    padding: 50px 0;
  }

  .newsletter h2 {
    font-size: 1.8rem;
  }

  .newsletter p {
    font-size: 0.95rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-photo {
    width: 100px;
    height: 100px;
  }


  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 16px;
  }

  .footer-column {
    /* Adiciona uma borda ou separador visual sutil entre as colunas no mobile, exceto na última */
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-column ul li {
    margin-bottom: 12px;
    gap: 10px;
  }

  .footer-column ul li i {
    width: 18px;
    min-width: 18px;
    font-size: 0.95rem;
  }

  /* ✅ ADICIONE: força texto a ocupar espaço disponível */
  .footer-column ul li > * {
    max-width: calc(100% - 30px); /* ✅ Considera o espaço do ícone */
  }

  /* ✅ Tratamento especial para email longo */
  .footer-column#contato ul li {
    align-items: flex-start; /* ✅ Alinha topo */
  }

  .footer-column:last-child {
    border-bottom: none; /* Remove a borda no último item */
    padding-bottom: 0;
  }

  .footer-column ul li > :not(i) {
    font-size: 0.9rem;
  }
  /* Centraliza o texto do copyright */
  .footer-bottom p {
    text-align: center;
    padding-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo-image {
    width: 45px;
    height: 45px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .footer-column ul li {
    gap: 8px;
    font-size: 0.9rem;
  }

  .footer-column ul li i {
    width: 16px;
    min-width: 16px;
  }
}


