/* ===================================
   FONT FACES - CENTURY GOTHIC
   =================================== */
@font-face {
  font-family: 'Century Gothic';
  src: url('fonts/Century Gothic.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Century Gothic';
  src: url('fonts/Century Gothic Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Century Gothic';
  src: url('fonts/Century Gothic Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Century Gothic';
  src: url('fonts/Century Gothic Bold Italic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ===================================
   ROOT VARIABLES - TAILWIND CONFIG
   =================================== */
:root {
  /* Colors */
  --primary: #1F4E5F;
  --secondary: #1F4E5F;
  --primary-dark: #1F4E5F;
  --accent: #F26A5A;
  --subtle: #1F4E5F;
  --main: #F5F6F4;
  --surface: #FFFFFF;
  --rosa: #C97C7C;
  --background-light: #F5F6F4;
  --text-main: #1F4E5F;

  /* Border Radius */
  --radius-3xl: 1.5rem;
  --radius-4xl: 2rem;

  /* Spacing */
  --max-w-7xl: 80rem;
  --max-w-5xl: 64rem;
  --max-w-4xl: 56rem;
  --max-w-3xl: 48rem;
  --max-w-md: 28rem;
}

/* ===================================
   BASE STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Calibri", "Candara", "Segoe UI", sans-serif;
  background-color: var(--main);
  color: var(--secondary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
.font-display {
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

::selection {
  background-color: var(--accent);
  color: #FFFFFF;
}

/* ===================================
   CUSTOM SCROLLBAR
   =================================== */
.hide-scroll::-webkit-scrollbar {
  height: 6px;
}

.hide-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.hide-scroll::-webkit-scrollbar-thumb {
  background-color: #7FA9A3;
  border-radius: 20px;
}

/* ===================================
   HEADER
   =================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background-color: rgba(245, 246, 244, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 78, 95, 0.05);
}

header .container {
  max-width: var(--max-w-7xl);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  header .container {
    padding: 0 2rem;
  }
}

header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6rem;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
}

header .logo img {
  height: 2.5rem;
  width: auto;
}

header .logo-text {
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  color: var(--secondary);
}

header nav {
  display: none;
}

@media (min-width: 768px) {
  header nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
}

header nav a {
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--secondary);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: var(--accent);
}

header .cta-button {
  display: none;
}

@media (min-width: 768px) {
  header .cta-button {
    display: block;
  }
}

header .cta-button a {
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  background-color: var(--primary);
  color: #FFFFFF;
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

header .cta-button a:hover {
  background-color: var(--accent);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.125rem);
}

header .mobile-menu-button {
  display: flex;
}

@media (min-width: 768px) {
  header .mobile-menu-button {
    display: none;
  }
}

header .mobile-menu-button button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

header .mobile-menu-button button:hover {
  background: rgba(31, 78, 95, 0.08);
  transform: scale(1.05);
}

header .mobile-menu-button button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

header .mobile-menu-button .material-icons-outlined {
  font-size: 1.75rem;
  color: #1F4E5F;
}

/* ===================================
   MOBILE MENU
   =================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
}

.mobile-menu.is-open {
  pointer-events: auto;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.is-open .mobile-menu-overlay {
  opacity: 1;
}

.mobile-menu-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background-color: #FFFFFF;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu.is-open .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #F5F6F4;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  background: #E8E9E7;
  transform: scale(1.05);
}

.mobile-menu-close .material-icons-outlined {
  font-size: 1.5rem;
  color: #1F4E5F;
}

.mobile-menu-content nav {
  padding: 5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  background-color: #FFFFFF;
}

.mobile-nav-link {
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1F4E5F;
  text-decoration: none;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: block;
  background-color: transparent;
}

.mobile-nav-link:hover {
  background-color: #F5F6F4;
}

.mobile-nav-cta {
  margin-top: auto;
  padding: 1rem;
  border-radius: 8px;
  background-color: #1F4E5F;
  color: #FFFFFF;
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-nav-cta:hover {
  background-color: #F26A5A;
  transform: translateY(-1px);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
  background-color: var(--secondary);
}

@media (min-width: 1024px) {
  .hero {
    padding: 12rem 0 8rem;
  }
}

.hero .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(3rem);
  opacity: 0.1;
}

.hero .blob-1 {
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  margin-right: -5rem;
  margin-top: -5rem;
  background-color: var(--subtle);
}

.hero .blob-2 {
  bottom: 0;
  left: 0;
  width: 18rem;
  height: 18rem;
  margin-left: -5rem;
  margin-bottom: -5rem;
  background-color: var(--subtle);
}

.hero .container {
  position: relative;
  max-width: var(--max-w-7xl);
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero .container {
    padding: 0 2rem;
  }
}

.hero h1 {
  font-size: 3rem;
  font-weight: 400;
  color: var(--main);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 4.5rem;
  }
}

.hero h1 .highlight-main {
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif;
  font-weight: 700;
  color: var(--main);
}

.hero h1 .highlight-accent {
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif;
  font-weight: 700;
  color: var(--accent);
}

/* ===================================
   SECTIONS GENERAL
   =================================== */
section {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  section {
    padding: 6rem 0;
  }
}

section .container {
  max-width: var(--max-w-7xl);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

@media (min-width: 1024px) {
  section .container {
    padding: 0 2rem;
  }
}

/* ===================================
   QUEM SOMOS SECTION
   =================================== */
#quem-somos {
  background-color: var(--main);
}

#quem-somos .container {
  max-width: var(--max-w-5xl);
}

#quem-somos .intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 5rem;
}

#quem-somos .intro > div:first-child {
  display: flex;
  flex-direction: column;
}

#quem-somos .intro > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  #quem-somos .intro {
    grid-template-columns: 1fr 1fr;
  }
}

#quem-somos .intro h2 {
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

#quem-somos .intro .accent-bar {
  width: 5rem;
  height: 0.375rem;
  background-color: var(--accent);
  border-radius: 9999px;
  margin-bottom: 2rem;
}

#quem-somos .intro p {
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

#quem-somos .intro-box {
  background-color: var(--surface);
  padding: 2rem;
  border-radius: 1rem;
  color: rgba(31, 78, 95, 0.8);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(31, 78, 95, 0.1);
  font-size: 1rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  #quem-somos .intro-box {
    padding: 2.5rem;
    font-size: 1.125rem;
  }
}

#quem-somos .cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  #quem-somos .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

#quem-somos .card {
  padding: 2rem;
  background-color: var(--surface);
  border-radius: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(31, 78, 95, 0.05);
  transition: all 0.3s ease;
}

#quem-somos .card:hover {
  border-color: rgba(31, 78, 95, 0.2);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

#quem-somos .card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--main);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
  transition: all 0.3s ease;
}

#quem-somos .card:hover .card-icon {
  background-color: var(--primary);
  color: #FFFFFF;
}

#quem-somos .card h3 {
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

#quem-somos .card p {
  color: rgba(31, 78, 95, 0.6);
  font-size: 0.875rem;
}

#quem-somos .quote {
  margin-top: 4rem;
  padding: 2rem 3rem;
  background-color: rgba(31, 78, 95, 0.05);
  border-radius: 1rem;
  border-left: 4px solid var(--primary);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

#quem-somos .quote p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--secondary);
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
}

/* ===================================
   METODOLOGIA SECTION
   =================================== */
#metodo {
  background-color: var(--main);
}

#metodo .header {
  max-width: var(--max-w-3xl);
  margin: 0 auto 5rem;
  text-align: center;
}

#metodo .header h2 {
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

#metodo .header p {
  font-size: 1.125rem;
  color: rgba(31, 78, 95, 0.7);
}

#metodo .cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  #metodo .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  #metodo .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

#metodo .card {
  position: relative;
  overflow: hidden;
  background-color: var(--surface);
  border-radius: 2rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

#metodo .card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

#metodo .card-bg-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2rem;
  opacity: 0.1;
  transition: opacity 0.3s ease;
}

#metodo .card:hover .card-bg-icon {
  opacity: 0.2;
}

#metodo .card-bg-icon span {
  font-size: 6rem;
  color: var(--subtle);
}

#metodo .card:hover .card-bg-icon span {
}

#metodo .card-number {
  font-size: 4rem;
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif;
  font-weight: 700;
  color: rgba(31, 78, 95, 0.1);
}

#metodo .card:hover .card-number {
}

#metodo .card-content {
  position: relative;
  z-index: 10;
}

#metodo .card h3 {
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

#metodo .card p {
  font-size: 0.875rem;
  color: rgba(31, 78, 95, 0.7);
}

/* ===================================
   ETAPAS SECTION
   =================================== */
#entrega {
  background-color: var(--main);
}

#entrega h2 {
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--secondary);
  margin-bottom: 4rem;
  text-align: center;
}

@media (min-width: 640px) {
  #entrega h2 {
    text-align: left;
  }
}

#entrega .timeline {
  position: relative;
}

#entrega .timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(31, 78, 95, 0.2);
  transform: translateY(-50%);
  display: none;
}

@media (min-width: 1024px) {
  #entrega .timeline-line {
    display: block;
  }
}

#entrega .cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: 3rem;
}

@media (min-width: 768px) {
  #entrega .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  #entrega .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

#entrega .card {
  position: relative;
  background-color: var(--surface);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(31, 78, 95, 0.05);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 17.5rem;
}

#entrega .card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

#entrega .card-icon {
  position: absolute;
  top: -1.5rem;
  left: 2rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--main);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  ring: 4px solid var(--main);
  border: 1px solid rgba(31, 78, 95, 0.2);
}

#entrega .card h3 {
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  color: var(--secondary);
}

#entrega .card p {
  color: rgba(31, 78, 95, 0.7);
  font-size: 0.875rem;
  line-height: 1.75;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
  padding: 6rem 0;
  background-color: var(--main);
  border-top: 1px solid rgba(31, 78, 95, 0.05);
}

.cta-section .container {
  max-width: var(--max-w-4xl);
  text-align: center;
}

.cta-section .cta-box {
  background: linear-gradient(to bottom right, var(--secondary), #152e38);
  border-radius: 3rem;
  padding: 2.5rem 4rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-section .cta-box {
    padding: 4rem;
  }
}

.cta-section .cta-blob {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background-color: rgba(31, 78, 95, 0.1);
  border-radius: 50%;
  filter: blur(3rem);
  margin-right: -4rem;
  margin-top: -4rem;
}

.cta-section h2 {
  font-size: 1.875rem;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 3rem;
  }
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .cta-section p {
    font-size: 1.25rem;
  }
}

.cta-section .cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: #FFFFFF;
  font-weight: 700;
  padding: 1rem 3rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  z-index: 10;
}

.cta-section .cta-button:hover {
  background-color: #FFFFFF;
  color: var(--accent);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.25rem);
}

/* ===================================
   CONTACT SECTION
   =================================== */
#fale-conosco {
  position: relative;
  background-color: #1F4E5F;
  padding: 4rem 0 5rem;
  color: #FDF8F3;
}

@media (min-width: 1024px) {
  #fale-conosco {
    padding: 5rem 0;
  }
}

#fale-conosco .container {
  position: relative;
  max-width: var(--max-w-7xl);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  #fale-conosco .container {
    padding: 0 2rem;
  }
}

#fale-conosco .content {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  #fale-conosco .content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

#fale-conosco h2 {
  font-size: 1.875rem;
  color: #FFFFFF;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

#fale-conosco .contact-intro {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 34rem;
}

@media (min-width: 640px) {
  #fale-conosco h2 {
    font-size: 2.25rem;
  }
}

#fale-conosco .contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#fale-conosco .contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

#fale-conosco .contact-item:hover {
  opacity: 0.8;
}

#fale-conosco .contact-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: rgba(127, 169, 163, 0.2);
  color: #7FA9A3;
}

#fale-conosco .contact-text {
  display: flex;
  flex-direction: column;
}

#fale-conosco .contact-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(253, 248, 243, 0.6);
}

#fale-conosco .contact-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
}

#fale-conosco .form-box {
  background-color: #FFFFFF;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  color: var(--text-main);
  max-width: 28rem;
}

@media (min-width: 1024px) {
  #fale-conosco .form-box {
    margin-left: auto;
  }
}

#fale-conosco .form-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif;
  font-weight: 700;
}

#fale-conosco .form-group {
  margin-bottom: 1rem;
}

#fale-conosco .form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(31, 78, 95, 0.8);
  margin-bottom: 0.25rem;
}

#fale-conosco .form-group input,
#fale-conosco .form-group textarea {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #D1D5DB;
  background-color: var(--background-light);
  padding: 0.75rem;
  font-size: 0.875rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  font-family: inherit;
}

#fale-conosco .form-group input:focus,
#fale-conosco .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31, 78, 95, 0.1);
}

#fale-conosco .form-group textarea {
  resize: vertical;
}

#fale-conosco .form-button {
  width: 100%;
  border-radius: 0.5rem;
  background-color: var(--primary);
  color: #FFFFFF;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

#fale-conosco .form-button:hover {
  background-color: var(--accent);
}

#fale-conosco .footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  #fale-conosco .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

#fale-conosco .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #FFFFFF;
  font-weight: 700;
}

#fale-conosco .footer-copyright {
  font-size: 0.875rem;
  color: rgba(253, 248, 243, 0.5);
  margin: 0;
  padding: 0;
  line-height: 1;
  padding-top: 10px;
}

#fale-conosco .footer-logo img {
  height: 2rem;
  width: auto;
  filter: brightness(0) invert(1);
}

#fale-conosco .footer-copyright {
  font-size: 0.875rem;
  color: rgba(253, 248, 243, 0.5);
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.transition-all {
  transition: all 0.3s ease;
}

.transition-colors {
  transition: color 0.3s ease, background-color 0.3s ease;
}

.hover\:opacity-80:hover {
  opacity: 0.8;
}

.hover\:translate-y-0:hover {
  transform: translateY(0);
}
