/*
Theme Name: EuroMundi Containers
Theme URI: https://euromundi.com.br
Author: EuroMundi
Description: Tema WordPress para venda de containers para operações profissionais
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: euromundi
*/

/* ============================================
   GOOGLE FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Colors */
  --background: #ffffff;
  --foreground: #1a2332;
  --primary: #5c6ac4;
  --primary-foreground: #ffffff;
  --muted: #f8f9fa;
  --muted-foreground: #6b7280;
  --border: #e5e7eb;
  --card: #ffffff;
  --orange: #5c6ac4;
  --whatsapp: #25d366;
  --whatsapp-hover: #20b858;
  
  /* Shadows */
  --shadow-soft: 0 2px 8px -2px rgba(92, 106, 196, 0.08);
  --shadow-elevated: 0 8px 24px -4px rgba(92, 106, 196, 0.12);
  --shadow-card: 0 1px 3px 0 rgba(92, 106, 196, 0.05);
  
  /* Radius */
  --radius: 0.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.01em;
}

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

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

ul, ol {
  list-style: none;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container-section {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

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

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

.section-subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.125rem;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-foreground);
  background-color: var(--primary);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: #4a58b0;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  background-color: var(--whatsapp);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  color: var(--foreground);
  background-color: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background-color: var(--muted);
}

/* ============================================
   CARDS
   ============================================ */
.card-elevated {
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card-elevated:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-2px);
}

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

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

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

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

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
  white-space: nowrap;
}

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

.header-cta {
  display: none;
}

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

.header-cta .btn-whatsapp {
  font-size: 0.875rem;
  padding: 0.625rem 1.5rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

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

.mobile-menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--foreground);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.mobile-menu.active {
  display: block;
}

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

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

.mobile-menu nav a {
  padding: 0.5rem 0;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

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

.mobile-menu .btn-whatsapp {
  margin-top: 1rem;
  text-align: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  background-color: var(--background);
  padding-top: 80px;
  padding-bottom: 20px;
}

.hero-container {
  padding: 1.5rem 0;
}

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

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.hero-content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

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

.hero-content h1 span {
  color: var(--primary);
}

.hero-content .lead {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  max-width: 32rem;
  line-height: 1.75;
}

.hero-content .sublead {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  max-width: 32rem;
  line-height: 1.75;
}

.hero-qualifiers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-qualifier {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background-color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.hero-qualifier svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.hero-qualifier span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-buttons .btn-whatsapp,
.hero-buttons .btn-outline {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
}

.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero-image img {
    height: 500px;
  }
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(92, 106, 196, 0.2), transparent);
}

/* Hero Stats */
.hero-stats {
  position: absolute;
  bottom: -1.5rem;
  left: 1rem;
  right: 1rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.hero-stat-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
}

@media (min-width: 768px) {
  .hero-stat-value {
    font-size: 1rem;
  }
}

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

/* ============================================
   CLIENTS SECTION
   ============================================ */
.clients-section {
  padding: 3rem 0;
  background-color: #ffffff;
  overflow: hidden;
}

.clients-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--foreground);
  margin-bottom: 2rem;
}

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

.clients-carousel-wrapper {
  position: relative;
}

.clients-carousel-wrapper::before,
.clients-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8rem;
  z-index: 10;
  pointer-events: none;
}

.clients-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.8), transparent);
}

.clients-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0.8), transparent);
}

.clients-carousel {
  display: flex;
  width: max-content;
  animation: infinite-scroll 25s linear infinite;
}

.clients-carousel:hover {
  animation-play-state: paused;
}

@keyframes infinite-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}

.client-item {
  flex-shrink: 0;
  width: 12rem;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .client-item {
    width: 16rem;
  }
}

.client-item img {
  max-height: 4rem;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

@media (min-width: 768px) {
  .client-item img {
    max-height: 5rem;
  }
}

.client-item:hover img {
  filter: grayscale(0%);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
  padding: 5rem 0;
  background-color: var(--background);
}

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

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

.section-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background-color: rgba(92, 106, 196, 0.1);
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

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

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

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

.product-card {
  overflow: hidden;
}

.product-card-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

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

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

.product-card-content {
  padding: 1.25rem;
}

.product-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.product-card-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  background-color: rgba(92, 106, 196, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.product-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  font-family: 'Poppins', sans-serif;
}

.product-card-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

/* Products Bottom Centered */
.products-grid-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.products-grid-bottom .product-card {
  width: 100%;
}

@media (min-width: 768px) {
  .products-grid-bottom .product-card {
    width: calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .products-grid-bottom .product-card {
    width: calc(33.333% - 1rem);
  }
}

/* Applications */
.applications {
  margin-top: 4rem;
}

.applications-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  text-align: center;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.applications-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.application-tag {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: rgba(92, 106, 196, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.section-cta .btn-whatsapp {
  padding: 1rem 2rem;
}

/* ============================================
   CONFIGURATIONS SECTION
   ============================================ */
.configurations-section {
  padding: 5rem 0;
  background-color: var(--muted);
}

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

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

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

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

.config-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background-color: var(--background);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease;
}

.config-card:hover {
  border-color: rgba(92, 106, 196, 0.3);
}

.config-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background-color: rgba(92, 106, 196, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

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

.config-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.config-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

/* ============================================
   CONDITIONS SECTION
   ============================================ */
.conditions-section {
  padding: 5rem 0;
  background-color: var(--background);
}

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

.conditions-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.condition-card {
  padding: 1.25rem;
  text-align: center;
}

.condition-card.highlight {
  box-shadow: 0 0 0 2px var(--primary);
  background-color: rgba(92, 106, 196, 0.05);
}

.condition-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background-color: rgba(92, 106, 196, 0.1);
}

.condition-card.highlight .condition-icon {
  background-color: var(--primary);
}

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

.condition-card.highlight .condition-icon svg {
  color: var(--primary-foreground);
}

.condition-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.condition-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.condition-card.highlight .condition-value {
  color: var(--primary);
}

.condition-description {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* Notice Box */
.notice-box {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background-color: rgba(92, 106, 196, 0.05);
  border: 1px solid rgba(92, 106, 196, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .notice-box {
    flex-direction: row;
    align-items: center;
  }
}

.notice-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(92, 106, 196, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.notice-content {
  flex: 1;
}

.notice-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.notice-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
  padding: 5rem 0;
  background-color: var(--background);
}

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

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

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

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

.process-grid-bottom {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

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

.process-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  background-color: var(--muted);
  border: 1px solid var(--border);
}

.process-icon-wrapper {
  position: relative;
  margin-bottom: 1.25rem;
}

.process-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.process-step {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: var(--orange);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.process-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.process-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.process-cta {
  text-align: center;
  margin-top: 3rem;
}

.process-cta p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* ============================================
   SPECS SECTION
   ============================================ */
.specs-section {
  padding: 5rem 0;
  background-color: var(--muted);
}

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

/* Specs Tabs */
.specs-tabs {
  width: 100%;
}

.specs-tabs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 28rem;
  margin: 0 auto 2rem;
  background-color: var(--muted);
  border-radius: var(--radius);
  padding: 0.25rem;
  border: 1px solid var(--border);
}

.specs-tab {
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  background: transparent;
  border: none;
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer;
  transition: all 0.2s ease;
}

.specs-tab:hover {
  color: var(--foreground);
}

.specs-tab.active {
  background-color: var(--background);
  color: var(--foreground);
  box-shadow: var(--shadow-soft);
}

.specs-content {
  display: none;
}

.specs-content.active {
  display: block;
}

.specs-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

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

.specs-card {
  padding: 1.25rem 1.5rem;
}

.specs-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  font-family: 'Poppins', sans-serif;
}

.specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.specs-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
}

.specs-item-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.specs-item-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

/* Features */
.features-card {
  padding: 1.25rem 1.5rem;
}

.features-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.features-grid {
  display: grid;
  gap: 0.75rem;
}

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

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-check {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: rgba(92, 106, 196, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-check svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--primary);
}

.feature-text {
  font-size: 0.875rem;
  color: var(--foreground);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 5rem 0;
  background-color: var(--muted);
}

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

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

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

.faq-header {
  position: relative;
}

@media (min-width: 1024px) {
  .faq-header {
    position: sticky;
    top: 7rem;
    align-self: start;
  }
}

.faq-contact-box {
  padding: 1.25rem;
  border-radius: var(--radius);
  background-color: var(--background);
  border: 1px solid var(--border);
}

.faq-contact-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.faq-contact-description {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.faq-contact-box .btn-whatsapp {
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
}

/* Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  padding: 0 1.25rem;
  border: none;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  transition: color 0.2s ease;
}

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

.faq-question svg {
  width: 1rem;
  height: 1rem;
  color: var(--muted-foreground);
  transition: transform 0.2s ease;
}

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

.faq-answer {
  display: none;
  padding-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 5rem 0;
  background-color: var(--primary);
}

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

.cta-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

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

.cta-content .section-badge {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--primary-foreground);
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

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

.cta-title span {
  color: var(--orange);
}

.cta-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.cta-conditions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.cta-condition {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.cta-condition svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary-foreground);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.cta-condition span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.cta-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-badge svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary-foreground);
}

.cta-badge span {
  font-size: 0.75rem;
  color: var(--primary-foreground);
}

/* CTA Info Box */
.cta-info-box {
  padding: 1.5rem;
  border-radius: var(--radius);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-info-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.cta-info-header svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-foreground);
}

.cta-info-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-foreground);
  font-family: 'Poppins', sans-serif;
}

.cta-info-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.cta-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.cta-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.cta-info-check {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.cta-info-check svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--primary-foreground);
}

.cta-info-item span {
  font-size: 0.875rem;
  color: var(--primary-foreground);
}

.cta-info-footer {
  padding: 1rem;
  border-radius: var(--radius);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-info-footer p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.cta-info-footer strong {
  color: var(--primary-foreground);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: var(--foreground);
  padding: 3rem 0;
}

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

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

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

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

.footer-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-foreground);
  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.6);
  transition: color 0.2s ease;
}

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

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-contact-item svg {
  width: 1rem;
  height: 1rem;
}

.footer-contact-item.whatsapp svg {
  color: #25d366;
}

.footer-contact-item.email svg {
  color: var(--orange);
}

.footer-contact-item a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

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

/* Footer Map */
.footer-map {
  margin-bottom: 0.75rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.footer-map iframe {
  width: 100%;
  height: 120px;
  border: 0;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-address svg {
  width: 1rem;
  height: 1rem;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-address a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  transition: color 0.2s ease;
}

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

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

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

/* ============================================
   ICONS (SVG Inline)
   ============================================ */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.hidden {
  display: none;
}

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