/*
Theme Name: Lobo Landing Page
Theme URI: https://alojamentolobodomar.com/
Author: Lobo do Mar
Description: Apenas para os lobos do mar
Version: 1.0.0
Text Domain: lobo-landing-wp
*/
/* ======================
   RESET & FONTS
   ====================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #a7cea2;
  --primary-10: #eef5ee;
  --primary-20: #dcebdc;
  --ink-80: #1a1a1a;
  --ink-60: #4d4d4d;
  --ink-40: #808080;
  --white: #ffffff;
  --black: #000000;
  --radius: 0.75rem;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink-80);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ======================
   UTILITIES
   ====================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

.section {
  padding: 3rem 0;
}

@media (min-width: 640px) {
  .section {
    padding: 4rem 0;
  }
}

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

.section-white {
  background: var(--white);
}

.section-light {
  background: var(--primary-10);
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .section-header {
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
}

.section-header p {
  font-size: 0.9375rem;
  color: var(--ink-60);
}

@media (min-width: 640px) {
  .section-header p {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .section-header p {
    font-size: 1.125rem;
  }
}

.italic {
  font-style: italic;
}

/* ======================
   BUTTONS
   ====================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .btn {
    padding: 1.25rem 2rem;
    font-size: 1.0625rem;
  }
}

@media (min-width: 1024px) {
  .btn {
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
  }
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: #96bd91;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* ======================
   HEADER
   ====================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

@media (min-width: 1024px) {
  .header-content {
    height: 5rem;
  }
}

.logo-btn {
  transition: opacity 0.3s;
}

.logo-btn:hover {
  opacity: 0.7;
}

.logo {
  height: 2.5rem;
  width: 2.5rem;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .logo {
    height: 3.5rem;
    width: 3.5rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  font-size: 0.9375rem;
  color: var(--ink-80);
  transition: color 0.3s;
}

.nav-desktop a:hover {
  color: var(--primary);
}

.lang-btn,
.lang-btn-mobile {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.875rem;
  transition: all 0.3s;
}

.lang-btn:hover,
.lang-btn-mobile:hover {
  background: var(--primary);
  color: var(--white);
}

.lang-btn-mobile {
  font-size: 0.75rem;
  padding: 0.375rem 0.625rem;
}

.mobile-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .mobile-controls {
    display: none;
  }
}

.menu-btn {
  color: var(--ink-80);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 18.75rem;
  max-width: 90vw;
  height: 100vh;
  background: var(--white);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 200;
  transition: right 0.3s ease;
  padding: 2rem;
}

.mobile-menu.active {
  right: 0;
}

.close-menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--ink-80);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.mobile-nav a {
  font-size: 1.125rem;
  color: var(--ink-80);
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--primary);
}

/* ======================
   HERO SECTION
   ====================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgb(0 0 0 / 74%), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.5))
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  padding: 0 1rem;
  max-width: 64rem;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  display: flex;
  justify-content: center;  
}

@media (min-width: 640px) {
  .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    
  }
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
  }
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 0.75rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

.hero-description {
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

@media (min-width: 640px) {
  .scroll-indicator {
    bottom: 2rem;
  }
}

.scroll-indicator-box {
  width: 1.25rem;
  height: 2.25rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
}

@media (min-width: 640px) {
  .scroll-indicator-box {
    width: 1.5rem;
    height: 2.5rem;
  }
}

.scroll-indicator-dot {
  width: 0.25rem;
  height: 0.375rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 9999px;
  animation: bounce 2s infinite;
}

@media (min-width: 640px) {
  .scroll-indicator-dot {
    width: 0.375rem;
    height: 0.5rem;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(8px);
  }
  60% {
    transform: translateY(4px);
  }
}

/* ======================
   ABOUT SECTION
   ====================== */

.quote-box {
  max-width: 64rem;
  margin: 0 auto 3rem;
  background: linear-gradient(to bottom right, var(--primary-10), var(--primary-20));
  border-radius: 0.75rem;
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .quote-box {
    margin-bottom: 4rem;
    border-radius: 1rem;
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .quote-box {
    margin-bottom: 5rem;
    border-radius: 1.5rem;
    padding: 4rem;
  }
}

.quote-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-80);
  margin-bottom: 1rem;
}

.quote-text:last-child {
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .quote-text {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .quote-text {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }
}

.feature-card {
  text-align: center;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--primary-10);
  transition: all 0.3s;
}

@media (min-width: 640px) {
  .feature-card {
    padding: 1.5rem;
  }
}

.feature-card:hover {
  background: var(--primary-20);
  transform: scale(1.05);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .feature-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
  }
}

.feature-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 1024px) {
  .feature-card h3 {
    font-size: 1.25rem;
  }
}

.feature-card p {
  font-size: 0.8125rem;
  color: var(--ink-60);
}

@media (min-width: 640px) {
  .feature-card p {
    font-size: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .feature-card p {
    font-size: 0.9375rem;
  }
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .image-grid {
    margin-bottom: 4rem;
  }
}

.image-card {
  border-radius: var(--radius);
  overflow: hidden;
  height: 17.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

@media (min-width: 640px) {
  .image-card {
    height: 21.875rem;
  }
}

@media (min-width: 1024px) {
  .image-card {
    height: 25rem;
  }
}

.image-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.image-card:hover img {
  transform: scale(1.05);
}

.section-text {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-text p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-60);
  margin-bottom: 1rem;
}

.section-text p:last-child {
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .section-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-text p {
    font-size: 1.125rem;
  }
}

/* ======================
   GALLERY SECTION
   ====================== */

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.gallery-item:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--white);
  transition: color 0.3s;
}

@media (min-width: 640px) {
  .lightbox-close {
    top: 1.5rem;
    right: 1.5rem;
  }
}

.lightbox-close:hover {
  color: var(--primary);
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ======================
   LOCATION SECTION
   ====================== */

.location-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .location-images {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .location-images {
    margin-bottom: 4rem;
  }
}

.location-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 13.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

@media (min-width: 640px) {
  .location-img {
    height: 17.5rem;
  }
}

@media (min-width: 1024px) {
  .location-img {
    height: 20rem;
  }
}

.location-img:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.location-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.location-img:hover img {
  transform: scale(1.05);
}

.poi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .poi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .poi-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 4rem;
  }
}

.poi-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

@media (min-width: 640px) {
  .poi-card {
    gap: 1rem;
    padding: 1.5rem;
  }
}

.poi-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.poi-card svg {
  flex-shrink: 0;
}

.poi-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .poi-card h3 {
    font-size: 1.0625rem;
  }
}

@media (min-width: 1024px) {
  .poi-card h3 {
    font-size: 1.125rem;
  }
}

.poi-card p {
  font-size: 0.8125rem;
  color: var(--ink-60);
}

@media (min-width: 640px) {
  .poi-card p {
    font-size: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .poi-card p {
    font-size: 0.9375rem;
  }
}

.map-container {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@media (min-width: 640px) {
  .map-container {
    border-radius: 1rem;
  }
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

@media (min-width: 640px) {
  .map-container iframe {
    height: 450px;
  }
}

.map-info {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(to right, var(--primary-20), var(--white));
}

@media (min-width: 640px) {
  .map-info {
    padding: 1.5rem;
  }
}

.map-info svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.map-info div {
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .map-info div {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .map-info div {
    font-size: 1rem;
  }
}

/* ======================
   BOOKING SECTION
   ====================== */

.booking-wrapper {
  max-width: 64rem;
  margin: 0 auto;
}

.booking-form {
  background: linear-gradient(to bottom right, var(--primary-10), var(--white));
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .booking-form {
    border-radius: 1rem;
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .booking-form {
    border-radius: 1.5rem;
    padding: 3rem;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

@media (min-width: 640px) {
  .form-group label {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .form-group label {
    font-size: 1rem;
  }
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  transition: all 0.3s;
}

@media (min-width: 640px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
  }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(167, 206, 162, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.booking-info {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: var(--ink-60);
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .booking-info {
    margin-top: 2rem;
    font-size: 0.875rem;
  }
}

/* ======================
   FAQ SECTION
   ====================== */

.faq-wrapper {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-list {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .faq-list {
    border-radius: 1rem;
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .faq-list {
    border-radius: 1.5rem;
    padding: 2rem;
  }
}

.faq-item {
  border-bottom: 1px solid var(--primary-20);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-80);
  transition: color 0.3s;
}

@media (min-width: 640px) {
  .faq-question {
    padding: 1.25rem 0;
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .faq-question {
    font-size: 1rem;
  }
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer ul li p{
  padding: 5px !important;
}
.faq-answer ul {
  margin-bottom: 15px !important;
}
.faq-item.active .faq-answer {
  max-height: max-content;
}

.faq-answer p {
  padding-bottom: 1rem;
  font-size: 0.8125rem;
  color: var(--ink-60);
}

@media (min-width: 640px) {
  .faq-answer p {
    padding-bottom: 1.25rem;
    font-size: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .faq-answer p {
    font-size: 0.9375rem;
  }
}

/* ======================
   CONTACT SECTION
   ====================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

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

@media (min-width: 640px) {
  .contact-info {
    gap: 2rem;
  }
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--primary-10);
  transition: all 0.3s;
}

@media (min-width: 640px) {
  .contact-card {
    padding: 1.5rem;
  }
}

.contact-card:hover {
  background: var(--primary-20);
}

.contact-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .contact-icon {
    width: 3rem;
    height: 3rem;
  }
}

.contact-card h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .contact-card h3 {
    font-size: 1rem;
  }
}

.contact-card a,
.contact-card p {
  font-size: 0.8125rem;
  color: var(--ink-80);
  word-break: break-word;
}

@media (min-width: 640px) {
  .contact-card a,
  .contact-card p {
    font-size: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .contact-card a,
  .contact-card p {
    font-size: 0.9375rem;
  }
}

.contact-card a {
  color: var(--primary);
  transition: color 0.3s;
}

.contact-card a:hover {
  color: #96bd91;
}

.contact-form-box {
  background: linear-gradient(to bottom right, var(--primary-10), var(--white));
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .contact-form-box {
    border-radius: 1rem;
    padding: 2rem;
  }
}

.contact-form-box button svg {
  width: 1rem;
  height: 1rem;
}

/* ======================
   FOOTER
   ====================== */

.footer {
  background: var(--ink-80);
  color: var(--white);
  padding: 2.5rem 0;
}

@media (min-width: 640px) {
  .footer {
    padding: 3rem 0;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 4rem 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
  }
}

.footer-logo {
  height: 3.5rem;
  width: 3.5rem;
  object-fit: contain;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .footer-logo {
    height: 4rem;
    width: 4rem;
  }
}

.footer-quote {
  font-size: 0.8125rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .footer-quote {
    font-size: 0.875rem;
  }
}

.footer-license {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 640px) {
  .footer-license {
    font-size: 0.875rem;
  }
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .footer-col h4 {
    font-size: 1.0625rem;
  }
}

@media (min-width: 1024px) {
  .footer-col h4 {
    font-size: 1.125rem;
  }
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .footer-nav {
    gap: 0.75rem;
  }
}

.footer-nav a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

@media (min-width: 640px) {
  .footer-nav a {
    font-size: 0.875rem;
  }
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .footer-contact {
    gap: 1rem;
  }
}

.footer-contact a,
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

@media (min-width: 640px) {
  .footer-contact a,
  .footer-address {
    font-size: 0.875rem;
  }
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-contact svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .social-links {
    gap: 1rem;
  }
}

.social-links a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

@media (min-width: 640px) {
  .social-links a {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.social-links a:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    padding-top: 2rem;
  }
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 640px) {
  .footer-bottom p {
    font-size: 0.875rem;
  }
}

/* ======================
   TOAST NOTIFICATION
   ====================== */

.toast {
  position: fixed;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: var(--ink-80);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  max-width: 90vw;
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.success {
  background: var(--primary);
  color: var(--white);
}

.toast.error {
  background: #d4183d;
  color: var(--white);
}

/* ======================
   ANIMATIONS
   ====================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}
 /* =========================================================
   ESTILO PARA PÁGINAS COM TEMPLATE DEFAULT
   (tipicamente páginas estáticas: termos, privacidade, etc.)
   ========================================================= */

/* Variáveis base (320px) */
body.page-template-default.page{
  --legal-main-pad: 22px;
  --legal-card-pad-y: 22px;
  --legal-card-pad-x: 16px;
  --legal-max: 720px;
  --legal-font: 15px;
  --legal-radius: 14px;
}

/* Espaço vertical no main */
body.page-template-default.page main{
  padding: var(--legal-main-pad) 0;
}

/* Caixa do conteúdo (ajusta o seletor se o teu wrapper for diferente) */
body.page-template-default.page main .container.section{
  max-width: var(--legal-max);
  margin: 0 auto;
  padding: var(--legal-card-pad-y) var(--legal-card-pad-x);

  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--legal-radius);
  box-shadow: 0 14px 40px rgba(0,0,0,.08);

  font-size: var(--legal-font);
  line-height: 1.85;
}

/* Tipografia */
body.page-template-default.page main .container.section h1{
  margin: 0 0 18px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-size: clamp(26px, 3vw, 42px);
}

body.page-template-default.page main .container.section h2{
  margin: 34px 0 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.08);
  line-height: 1.2;
  font-size: clamp(18px, 2vw, 26px);
}

body.page-template-default.page main .container.section h3{
  margin: 22px 0 10px;
  line-height: 1.25;
  font-size: 18px;
}

body.page-template-default.page main .container.section p{
  margin: 0 0 14px;
}

body.page-template-default.page main .container.section ul,
body.page-template-default.page main .container.section ol{
  margin: 8px 0 18px;
  padding-left: 1.2em;
}

body.page-template-default.page main .container.section li{
  margin: 6px 0;
}

body.page-template-default.page main .container.section a{
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}


/* =========================================================
   BREAKPOINTS (MOBILE-FIRST) 320 → 1920
   ========================================================= */

/* 360px */
@media (min-width: 360px){
  body.page-template-default.page{
    --legal-card-pad-x: 18px;
  }
}

/* 375px */
@media (min-width: 375px){
  body.page-template-default.page{
    --legal-font: 15.5px;
  }
}

/* 390px */
@media (min-width: 390px){
  body.page-template-default.page{
    --legal-main-pad: 60px;
  }
}

/* 414px */
@media (min-width: 414px){
  body.page-template-default.page{
    --legal-card-pad-y: 24px;
    --legal-card-pad-x: 20px;
  }
}

/* 480px */
@media (min-width: 480px){
  body.page-template-default.page{
    --legal-max: 780px;
    --legal-font: 16px;
    --legal-radius: 16px;
  }
}

/* 640px */
@media (min-width: 640px){
  body.page-template-default.page{
    --legal-main-pad: 60px;
    --legal-card-pad-y: 28px;
    --legal-card-pad-x: 24px;
    --legal-max: 860px;
  }
}

/* 768px (tablet) */
@media (min-width: 768px){
  body.page-template-default.page{
    --legal-main-pad: 36px;
    --legal-card-pad-y: 34px;
    --legal-card-pad-x: 28px;
    --legal-max: 920px;
    --legal-radius: 18px;
  }
}

/* 992px (laptop pequeno) */
@media (min-width: 992px){
  body.page-template-default.page{
    --legal-main-pad: 42px;
    --legal-card-pad-y: 40px;
    --legal-card-pad-x: 32px;
    --legal-max: 980px;
  }
}

/* 1024px (desktop/tablet landscape) */
@media (min-width: 1024px){
  body.page-template-default.page{
    --legal-max: 1020px;
  }
}

/* 1280px */
@media (min-width: 1280px){
  body.page-template-default.page{
    --legal-main-pad: 48px;
    --legal-max: 1080px;
  }
}

/* 1366px (muito comum) */
@media (min-width: 1366px){
  body.page-template-default.page{
    --legal-max: 1120px;
  }
}

/* 1440px */
@media (min-width: 1440px){
  body.page-template-default.page{
    --legal-max: 1160px;
  }
}

/* 1680px */
@media (min-width: 1680px){
  body.page-template-default.page{
    --legal-max: 1220px;
  }
}

/* 1920px */
@media (min-width: 1920px){
  body.page-template-default.page{
    --legal-max: 1280px;
    --legal-main-pad: 56px;
  }
}
