/* ===============================================
   SITE OFICIAL - DR. JOSÉ ALFREDO BOSI
   Médico • Economista • Pré-candidato a Deputado Federal 2026
   =============================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ===============================================
   CSS Variables
   =============================================== */
:root {
  /* Colors */
  --primary: #0057ff;
  --primary-light: #3d7eff;
  --primary-dark: #0040cc;
  --foreground: #1a1a1a;
  --background: #ffffff;
  --secondary: #f5f5f5;
  --muted: #666666;
  --border: #e5e5e5;
  --card: #ffffff;
  --gray-dark: #1b1b1b;
  --gray-light: #f2f2f2;
  --green-500: #22c55e;
  --green-light: rgba(34, 197, 94, 0.1);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px -2px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px -8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px -12px rgba(0, 0, 0, 0.18);
  --shadow-primary: 0 8px 24px -8px rgba(0, 87, 255, 0.35);
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
}

/* ===============================================
   Reset & Base
   =============================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

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

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

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

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ===============================================
   Utility Classes
   =============================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

.section-padding {
  padding: 4rem 0;
}

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

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

.text-muted {
  color: var(--muted);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ===============================================
   Buttons
   =============================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  background-color: var(--primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-primary);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  background-color: rgba(0, 87, 255, 0.1);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: rgba(0, 87, 255, 0.2);
}

/* ===============================================
   Cards
   =============================================== */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* ===============================================
   Badge
   =============================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  background-color: rgba(0, 87, 255, 0.1);
  border-radius: 9999px;
}

.badge-solid {
  color: #fff;
  background-color: var(--primary);
}

/* ===============================================
   Header
   =============================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2.5rem !important;
  height: 2.5rem !important;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img{
    width: 100%;
    height: 100%;
}

.logo-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text strong {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.logo:hover .logo-text strong {
  color: var(--primary);
}

.logo-text small {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: -0.125rem;
}

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

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s ease;
}

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

.nav-cta {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: var(--foreground);
}

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

.menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-top: 1px solid var(--border);
}

.nav-mobile.active {
  display: flex;
}

@media (min-width: 768px) {
  .nav-mobile {
    display: none !important;
  }
}

.nav-mobile .nav-link {
  font-size: 1rem;
  padding: 0.5rem 0;
}


/* Google Forms Styling */
.google-form-wrapper {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
  overflow: hidden;
}

.google-form-wrapper iframe {
  width: 100%;
  min-height: 1200px;
  border: none;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .google-form-wrapper {
    padding: 10px;
  }
  
  .google-form-wrapper iframe {
    min-height: 1400px; /* Maior no mobile */
  }
}





/* ===============================================
   Hero Section
   =============================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--background) 50%, var(--background) 100%);
}

.hero-blur-1 {
  position: absolute;
  top: 5rem;
  right: 0;
  width: 24rem;
  height: 24rem;
  background-color: rgba(0, 87, 255, 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.hero-blur-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20rem;
  height: 20rem;
  background-color: rgba(0, 87, 255, 0.1);
  border-radius: 50%;
  filter: blur(48px);
}

.hero-container {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-content {
  order: 2;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    order: 1;
    text-align: left;
  }
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

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

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 42rem;
}

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

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .hero-stats {
    justify-content: flex-start;
  }
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-stat-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(0, 87, 255, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stat-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.hero-stat-text {
  text-align: left;
}

.hero-stat-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.hero-stat-text small {
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-image-wrapper {
  order: 1;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-image-wrapper {
    order: 2;
    justify-content: flex-end;
  }
}

.hero-image-container {
  position: relative;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.2), rgba(0, 87, 255, 0.05));
  border-radius: var(--radius-2xl);
  transform: rotate(6deg);
}

.hero-image-frame {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.1), transparent);
  padding: 0.5rem;
  border-radius: var(--radius-2xl);
}

.hero-image {
  width: 100%;
  max-width: 28rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background-color: var(--background);
  padding: 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-badge strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.hero-badge small {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ===============================================
   About Section
   =============================================== */
.about {
  background-color: rgba(0, 87, 255, 0.03);
}

.about-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.about-title {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .about-title {
    font-size: 3rem;
  }
}

.about-description {
  font-size: 1.125rem;
  color: var(--muted);
}

.about-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.about-card {
  padding: 1.5rem;
}

.about-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(0, 87, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.about-card:hover .about-card-icon {
  background-color: var(--primary);
  transform: scale(1.1);
}

.about-card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.about-card:hover .about-card-icon svg {
  color: #fff;
}

.about-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.about-card p {
  color: var(--muted);
}

.about-quote {
  margin-top: 4rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 2rem;
  border-radius: var(--radius-2xl);
  text-align: center;
}

@media (min-width: 768px) {
  .about-quote {
    padding: 3rem;
  }
}

.about-quote blockquote {
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .about-quote blockquote {
    font-size: 1.5rem;
  }
}

.about-quote cite {
  font-style: normal;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===============================================
   Supporters Section
   =============================================== */
.supporters {
  background-color: var(--background);
}

.supporters-header {
  text-align: center;
  margin-bottom: 3rem;
}

.supporters-title {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .supporters-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .supporters-title {
    font-size: 3rem;
  }
}

.supporters-description {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto;
}

.supporters-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

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

.supporters-stat {
  background-color: rgba(0, 87, 255, 0.03);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  text-align: center;
}

.supporters-stat:last-child {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .supporters-stat:last-child {
    grid-column: span 1;
  }
}

.supporters-stat svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  margin: 0 auto 0.5rem;
}

.supporters-stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.supporters-stat-label {
  font-size: 0.875rem;
  color: var(--muted);
}

.supporters-form-container {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 2rem;
}

@media (min-width: 768px) {
  .supporters-form-container {
    padding: 3rem;
  }
}

.supporters-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.supporters-form-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.supporters-form-header p {
  color: var(--muted);
}

.supporters-form-placeholder {
  background-color: rgba(0, 87, 255, 0.03);
  padding: 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.supporters-form-placeholder-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(0, 87, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.supporters-form-placeholder-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.supporters-form-placeholder h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.supporters-form-placeholder p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 28rem;
}

.supporters-disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1.5rem;
}

/* ===============================================
   Articles Section
   =============================================== */
.articles {
  background-color: rgba(0, 87, 255, 0.03);
}

.articles-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.articles-title {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .articles-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .articles-title {
    font-size: 3rem;
  }
}

.articles-description {
  font-size: 1.125rem;
  color: var(--muted);
}

.articles-grid {
  display: grid;
  gap: 2rem;
}

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

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

.article-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.article-card-image {
  height: 12rem;
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.1), rgba(0, 87, 255, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.article-card-image svg {
  width: 5rem;
  height: 5rem;
  color: rgba(0, 87, 255, 0.3);
  transition: transform 0.5s ease;
}

.article-card:hover .article-card-image svg {
  transform: scale(1.1);
}

.article-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
  background-color: var(--primary);
  border-radius: 9999px;
}

.article-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.article-card-meta svg {
  width: 1rem;
  height: 1rem;
}

.article-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card:hover h3 {
  color: var(--primary);
}

.article-card p {
  color: var(--muted);
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  transition: gap 0.3s ease;
}

.article-card:hover .article-card-link {
  gap: 0.75rem;
}

.article-card-link svg {
  width: 1rem;
  height: 1rem;
}

/* ===============================================
   Poll Section
   =============================================== */
.poll {
  background-color: var(--background);
}

.poll-container {
  max-width: 48rem;
  margin: 0 auto;
}

.poll-header {
  text-align: center;
  margin-bottom: 3rem;
}

.poll-title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .poll-title {
    font-size: 2.25rem;
  }
}

.poll-description {
  color: var(--muted);
}

.poll-card {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .poll-card {
    padding: 2rem;
  }
}

.poll-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.poll-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
}

.poll-option:hover {
  border-color: rgba(0, 87, 255, 0.5);
}

.poll-option.selected {
  border-color: var(--primary);
  background-color: rgba(0, 87, 255, 0.05);
}

.poll-option input {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--primary);
}

.poll-option span {
  font-weight: 500;
  color: var(--foreground);
}

.poll-other-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background-color: var(--background);
  margin-bottom: 1.5rem;
}

.poll-other-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
}

.poll-submit {
  width: 100%;
}

.poll-results {
  display: none;
}

.poll-results.active {
  display: block;
}

.poll-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--green-light);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.poll-success svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--green-500);
}

.poll-success span {
  font-weight: 500;
  color: #166534;
}

.poll-result-item {
  margin-bottom: 1rem;
}

.poll-result-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.poll-result-label {
  font-weight: 500;
  color: var(--foreground);
}

.poll-result-label.selected {
  color: var(--primary);
}

.poll-result-percentage {
  font-size: 0.875rem;
  color: var(--muted);
}

.poll-result-bar {
  height: 0.75rem;
  background-color: var(--secondary);
  border-radius: 9999px;
  overflow: hidden;
}

.poll-result-fill {
  height: 100%;
  background-color: rgba(0, 87, 255, 0.5);
  border-radius: 9999px;
  transition: width 1s ease;
}

.poll-result-fill.selected {
  background-color: var(--primary);
}

.poll-total {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 1.5rem;
}

.poll-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* ===============================================
   Contact Section
   =============================================== */
.contact {
  background-color: rgba(0, 87, 255, 0.03);
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-title {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .contact-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .contact-title {
    font-size: 3rem;
  }
}

.contact-description {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

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

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

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(0, 87, 255, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.contact-info-text small {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
}

.contact-info-text a,
.contact-info-text p {
  font-weight: 500;
  color: var(--foreground);
  margin: 0;
}

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

.contact-form {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .contact-form {
    padding: 2rem;
  }
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background-color: var(--background);
  color: var(--foreground);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted);
}

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

.form-submit {
  width: 100%;
}

.contact-form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-align: center;
}

.contact-form-success.active {
  display: flex;
}

.contact-form-success-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-form-success-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--green-500);
}

.contact-form-success h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-form-success p {
  color: var(--muted);
}

/* ===============================================
   Footer
   =============================================== */
.footer {
  background-color: var(--gray-dark);
  color: var(--background);
  padding: 3rem 0;
}

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

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

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

.footer-brand .logo-icon {
  margin-bottom: 0;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand .logo-text strong {
  color: var(--background);
}

.footer-brand .logo-text small {
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 20rem;
}

.footer-section h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

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

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

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

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

.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

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

.footer-social a:hover svg {
  transform: scale(1.1);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

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

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

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


/* ===============================================
   WhatsApp Floating Button
   =============================================== */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #FF3B30;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Animação de pulso */
@keyframes whatsapp-pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.2);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}




/* ===============================================
   Article Page
   =============================================== */
.article-page {
  padding-top: 5rem;
}

.article-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--background) 50%, var(--background) 100%);
  padding: 0.5rem 0;
}

@media (min-width: 768px) {
  .article-hero {
    padding: 0;
  }
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  margin-bottom: 2rem;
  transition: gap 0.3s ease;
}

.article-back:hover {
  gap: 0.75rem;
}

.article-back svg {
  width: 1rem;
  height: 1rem;
}

.article-hero-content {
  max-width: 48rem;
}

.article-hero h1 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

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

@media (min-width: 1024px) {
  .article-hero h1 {
    font-size: 3rem;
  }
}

.article-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-meta-item svg {
  width: 1rem;
  height: 1rem;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.article-share:hover {
  color: var(--primary);
}

.article-content {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .article-content {
    padding: 4rem 0;
  }
}

.article-body {
  max-width: 48rem;
  margin: 0 auto;
}

.article-body p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.article-body h3 {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-body strong {
  color: var(--foreground);
}

.article-author-box {
  max-width: 48rem;
  margin: 3rem auto 0;
  padding: 1.5rem;
  background-color: rgba(0, 87, 255, 0.03);
  border-radius: var(--radius-xl);
}

.article-author-box p {
  color: var(--muted);
  margin: 0;
}

.article-author-box strong {
  color: var(--foreground);
}

.article-author-box a {
  color: var(--primary);
}

.article-author-box a:hover {
  text-decoration: underline;
}

.article-back-button {
  max-width: 48rem;
  margin: 2rem auto 0;
  text-align: center;
}

/* ===============================================
   Animations
   =============================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.5s ease-out forwards;
}

/* ===============================================
   Responsive Utilities
   =============================================== */
.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: block;
  }
}

.hide-desktop {
  display: block;
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none;
  }
}

/* ===================================
   GALERIA DE FOTOS
   =================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: var(--gray-100, #f1f5f9);
  aspect-ratio: 4/3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 87, 255, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 2rem 1rem 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===================================
   LIGHTBOX MODAL
   =================================== */

.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 48px;
  font-weight: 300;
  cursor: pointer;
  z-index: 10002;
  transition: color 0.3s ease;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--primary, #0057ff);
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.lightbox-image-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-height: 100%;
}

#lightbox-image {
  max-width: 100%;
  max-height: calc(90vh - 100px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-image-caption {
  color: white;
  text-align: center;
  padding: 1.5rem 2rem;
  margin-top: 1rem;
  font-size: 1.1rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  max-width: 100%;
}

.lightbox-nav {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1rem;
  cursor: pointer;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
  background: var(--primary, #0057ff);
  border-color: var(--primary, #0057ff);
  transform: scale(1.1);
}

.lightbox-nav:active {
  transform: scale(0.95);
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* Responsivo */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .lightbox-content {
    flex-direction: column;
    gap: 0;
  }
  
  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    padding: 0.75rem;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
  
  .lightbox-close {
    top: 10px;
    right: 15px;
    font-size: 40px;
  }
  
  #lightbox-image {
    max-height: calc(90vh - 150px);
  }
  
  .lightbox-image-caption {
    font-size: 0.9rem;
    padding: 1rem;
  }
}

