@charset "UTF-8";
/* --- CORE DESIGN SYSTEM --- */
:root {
  --wine: #4a1525;
  --wine-dark: #2d0b15;
  --gold: #cfa052;
  --bg-light: #fdfcfb;
  --bg-alt: #f2efeb;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --font-display: 'Playfair Display', serif;
  --font-sans: 'Manrope', sans-serif;
  --ease: cubic-bezier(0.645, 0.045, 0.355, 1);
  --container-width: 1100px;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.7;
}

/* --- UTILITÁRIOS --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 10rem 0;
}

.bg-alt {
  background-color: var(--bg-alt);
}

/* Tipografia Base */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1.5rem;
  color: #555;
  font-size: 1.05rem;
}

.subtitle {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.subtitle::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 3rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.5s var(--ease);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-gold::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: var(--wine);
  transition: all 0.5s var(--ease);
  z-index: -1;
}

.btn-gold:hover {
  color: #fff;
}

.btn-gold:hover::after {
  height: 100%;
}

/* --- HEADER --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  z-index: 100;
  transition: all 0.5s var(--ease);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 90%;
}

header.scrolled {
  background: rgba(253, 252, 251, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

header.scrolled .logo-minimal,
header.scrolled .nav-links a,
header.scrolled .menu-btn {
  color: var(--wine-dark);
}

.custom-logo-link img {
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: all 0.4s;
}

header.scrolled .custom-logo-link img {
  filter: brightness(1) invert(0);
}

.logo-minimal {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: color 0.5s;
  font-weight: 600;
  z-index: 101;
}

.logo-minimal span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-sans);
  letter-spacing: 0.35em;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.5s;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-left: 3rem;
  position: relative;
  transition: color 0.5s;
  opacity: 0.8;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -8px;
  left: 50%;
  background: var(--gold);
  transition: all 0.5s var(--ease);
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 20px;
}

.menu-btn {
  display: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 102;
  transition: color 0.3s;
}

/* --- HERO SECTION --- */
.hero {
  height: 95vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--wine-dark);
}

.hero .container {
  width: 90%;
}

.hero-picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--text-light);
  width: 100%;
  max-width: 800px;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 8.5rem);
  line-height: 0.95;
  margin-bottom: 2rem;
  font-weight: 600;
}

.hero-title i {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.hero-desc {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  max-width: 600px;
  margin-bottom: 3rem;
  opacity: 0.9;
  font-weight: 300;
  line-height: 1.6;
  color: #fff;
}

/* --- SCROLLING MARQUEE --- */
.marquee-container {
  background: var(--wine);
  color: var(--gold);
  padding: 1.2rem 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.marquee {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  animation: scroll 40s linear infinite;
}

.marquee span {
  margin: 0 3rem;
  position: relative;
}

.marquee span::after {
  content: "•";
  position: absolute;
  right: -1.5rem;
  color: rgba(207, 160, 82, 0.4);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- LAYOUTS GERAIS --- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 7rem;
  align-items: center;
}

.grid-reverse {
  grid-template-columns: 0.8fr 1fr;
}

/* --- SOBRE --- */
.about-text h2 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.1;
  color: var(--wine-dark);
  margin-bottom: 2.5rem;
}

.img-editorial-wrap {
  position: relative;
}

.img-editorial {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

.img-editorial-wrap::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  z-index: 1;
  opacity: 0.3;
}

/* --- ESPECIALIDADES (LISTA EDITORIAL) --- */
.expertise-header {
  position: sticky;
  top: 150px;
}

.expertise-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.expertise-item {
  display: grid;
  grid-template-columns: 40px 1fr 30px;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  align-items: center;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}

.expertise-item .exp-number {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 600;
  opacity: 0.6;
}

.expertise-item .exp-content h3 {
  font-size: 1.8rem;
  color: var(--wine-dark);
  margin-bottom: 0.5rem;
  transition: color 0.4s var(--ease);
}

.expertise-item .exp-content p {
  margin: 0;
  font-size: 0.95rem;
}

.expertise-item .exp-icon {
  font-size: 1.5rem;
  color: var(--wine);
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.4s var(--ease);
}

.expertise-item:hover {
  background: rgba(207, 160, 82, 0.03);
  padding-left: 1.5rem;
}

.expertise-item:hover .exp-content h3 {
  color: var(--wine);
}

.expertise-item:hover .exp-icon {
  opacity: 1;
  transform: translateX(0);
}

/* --- PERFIL (MAGAZINE OVERLAP) --- */
.profile-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
}

.profile-img-col {
  position: relative;
  z-index: 1;
}

.profile-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.profile-content-col {
  background: var(--bg-light);
  padding: 5rem 4rem;
  margin-left: -15%;
  z-index: 2;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.profile-content-col h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--wine-dark);
  margin-bottom: 2rem;
}

.profile-content-col .profile-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--gold);
  margin-top: 3rem;
  opacity: 0.8;
}

/* --- MANIFESTO --- */
.manifesto-section {
  background: var(--wine-dark);
  color: var(--bg-light);
  text-align: center;
  padding: 12rem 0;
  position: relative;
  background-image: radial-gradient(rgba(207, 160, 82, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.manifesto-content {
  max-width: 900px;
  margin: 0 auto;
}

.manifesto-content .manifesto-quote-icon {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0.5;
}

.manifesto-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.3;
  color: #fff;
  margin-bottom: 3rem;
  font-style: italic;
}

.manifesto-content .manifesto-author {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
}

/* --- BENTO GRID --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(240px, auto);
  gap: 2rem;
  margin-top: 4rem;
}

.bento-item {
  background: var(--bg-light);
  border-radius: 2px;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(74, 21, 37, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.bento-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(45, 11, 21, 0.06);
  border-color: rgba(207, 160, 82, 0.3);
}

.bento-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--bg-alt);
  color: var(--gold);
  border-radius: 2px;
  font-size: 1.8rem;
  border: 1px solid rgba(207, 160, 82, 0.2);
  transition: all 0.5s var(--ease);
}

.bento-item:hover .icon-wrapper {
  background: var(--wine);
  color: var(--bg-light);
  border-color: var(--wine);
  transform: scale(1.05);
}

.bento-header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--wine-dark);
  line-height: 1.2;
}

.bento-content p {
  margin: 0;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Desktop Bento Puzzle */
@media (min-width: 1025px) {
  .bento-item.item-1 { grid-column: span 2; grid-row: span 1; }
  .bento-item.item-2 { grid-column: span 1; grid-row: span 1; }
  .bento-item.item-3 { grid-column: span 1; grid-row: span 2; }
  .bento-item.item-4 { grid-column: span 2; grid-row: span 1; }
  .bento-item.item-5 { grid-column: span 1; grid-row: span 1; }
  .bento-item.item-6 { grid-column: span 1; grid-row: span 1; }
}

/* --- PILARES --- */
.pillars-section {
  background: var(--wine-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.pillars-section::after {
  content: "JUSTIÇA";
  position: absolute;
  bottom: -10%;
  right: -5%;
  font-family: var(--font-display);
  font-size: 25vw;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  font-weight: 700;
  font-style: italic;
}

.pillars-list {
  display: flex;
  flex-direction: column;
  margin-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar-row {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr 2fr;
  gap: 3rem;
  align-items: baseline;
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s var(--ease);
}

.pillar-row:hover {
  background: rgba(255, 255, 255, 0.02);
  transform: translateX(10px);
}

.p-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
  opacity: 0.5;
}

.p-title {
  font-size: 2.2rem;
  font-family: var(--font-display);
  color: #fff;
}

.p-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 500px;
}

/* --- EQUIPE --- */
.team-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.team-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  cursor: grab;
}

.team-card:active {
  cursor: grabbing;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s var(--ease);
  filter: grayscale(100%);
}

.team-card:hover img {
  transform: scale(1.1);
  filter: grayscale(20%);
}

.team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 2rem;
  background: linear-gradient(to top, rgba(45, 11, 21, 0.95), transparent);
  color: #fff;
  transform: translateY(20px);
  transition: all 0.5s var(--ease);
  opacity: 0;
}

.team-card:hover .team-info {
  transform: translateY(0);
  opacity: 1;
}

.team-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.team-info p {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 0;
}

.swiper-nav-custom {
  display: flex;
  gap: 1rem;
  z-index: 10;
  position: relative;
}

.swiper-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(74, 21, 37, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  background: transparent;
  font-size: 1.5rem;
}

.swiper-btn:hover {
  background: var(--wine);
  color: #fff;
  border-color: var(--wine);
}

/* --- CONTATO --- */
.contact-section {
  position: relative;
  z-index: 1;
}

.contact-section .container {
  max-width: 1400px;
}

.contact-container-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: #fff;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  height: 100%;
  min-height: 700px;
  overflow: hidden;
  background: var(--wine-dark);
}

.contact-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  mix-blend-mode: luminosity;
}

.video-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 4rem;
  z-index: 3;
}

.video-overlay-content h3 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1;
}

.video-overlay-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.form-wrapper {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-alt);
}

.contact-form h2 {
  font-size: 3rem;
  color: var(--wine-dark);
  line-height: 1.1;
  margin-bottom: 3rem;
}

.form-group {
  margin-bottom: 2.5rem;
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--text-dark);
  transition: all 0.3s;
  resize: none;
  font-weight: 500;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--wine);
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 0;
  font-size: 1rem;
  color: #999;
  pointer-events: none;
  transition: 0.3s ease all;
  font-weight: 500;
}

.form-group input:not(:placeholder-shown) ~ label, 
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group input:focus ~ label,
.form-group textarea:focus ~ label {
  top: -15px;
  font-size: 0.75rem;
  color: var(--wine);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

/* --- FOOTER --- */
footer {
  background: var(--wine-dark);
  color: #fff;
  padding: 8rem 0 3rem;
}

footer .container {
  width: 90%;
  max-width: 90%;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 5rem;
  margin-bottom: 6rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
  display: block;
}

.footer-col h4 {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  margin-bottom: 2rem;
  color: var(--gold);
  font-weight: 700;
}

.footer-col p,
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 1rem;
  font-size: 1rem;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 3rem;
  font-size: 0.85rem;
  color: #fff;
}


/* =========================================
   MEDIA QUERIES - RESPONSIVIDADE COMPLETA
   ========================================= */

/* --- TABLETS LARGOS / NOTEBOOKS PEQUENOS (Até 1200px) --- */
@media (max-width: 1200px) {
  :root {
    --container-width: 95%;
  }
  .pillar-row {
    grid-template-columns: 1fr 2fr;
  }
  .p-num {
    display: none;
  }
}

/* --- TABLETS / IPADS (Até 1024px) --- */
@media (max-width: 1024px) {
  .section {
    padding: 6rem 0;
  }
  .grid-2,
  .grid-reverse {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .expertise-header {
    position: relative;
    top: 0;
    margin-bottom: 3rem;
  }
  .profile-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .profile-content-col {
    margin-left: 0;
    margin-top: -10%; /* Mantém o overlap, mas agora na vertical */
    padding: 4rem 3rem;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Ajuste do puzzle do Bento Grid para 2 colunas */
  .bento-item.item-1, .bento-item.item-4 {
    grid-column: span 2;
  }
  .bento-item.item-2, .bento-item.item-3, 
  .bento-item.item-5, .bento-item.item-6 {
    grid-column: span 1;
  }
  .contact-container-grid {
    grid-template-columns: 1fr;
  }
  .video-wrapper {
    height: 400px;
    min-height: auto;
  }
  .form-wrapper {
    padding: 4rem 3rem;
  }
  .team-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

/* --- SMARTPHONES (Até 768px) --- */
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  .menu-btn {
    display: block;
  }
  
  /* Menu Mobile Overlay */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background: var(--wine-dark);
    flex-direction: column;
    justify-content: center;
    transition: 0.5s var(--ease);
    z-index: 100;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links a {
    margin: 1.5rem 0;
    margin-left: 0;
    font-size: 1.2rem;
  }
  .nav-links a::after {
    bottom: -10px;
  }
  header.scrolled .nav-links a {
    color: #fff; /* Força branco mesmo se o menu for aberto no topo com fundo claro */
  }
  
  /* Heróis e Imagens */
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  .custom-logo-link img {
    width: 140px;
  }
  .img-editorial-wrap::before {
    display: none;
  }
  
  /* Especialidades e Manifesto */
  .expertise-item {
    grid-template-columns: 30px 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
  }
  .expertise-item .exp-icon {
    display: none;
  }
  .manifesto-section {
    padding: 6rem 0;
  }
  
  /* Bento Grid Reset */
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .bento-item {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    padding: 2.5rem 2rem;
  }
  
  /* Pilares e Footer */
  .pillar-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 0;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center; /* Centraliza o conteúdo no mobile para mais elegância */
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .video-overlay-content {
    padding: 2rem;
  }
  .video-overlay-content h3 {
    font-size: 2rem;
  }
}

/* --- SMARTPHONES PEQUENOS (Até 480px) --- */
@media (max-width: 480px) {
  .profile-content-col {
    margin-top: -15%;
    padding: 3rem 1.5rem;
  }
  .form-wrapper {
    padding: 3rem 1.5rem;
  }
  .contact-form h2 {
    font-size: 2.5rem;
  }
  .btn {
    width: 100%; /* Botões ocupam 100% da largura na tela muito pequena */
    padding: 1.1rem 1rem;
  }
  .marquee {
    font-size: 1.2rem;
  }
}