/* RESET Y VARIABLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #ebdd18; /* Amarillo/dorado principal */
  --cta: #ff3d00; /* Rojo/naranja fuerte para CTAs */
  --black: #000000; /* Negro */
  --yellow: #fbbf24; /* Amarillo más claro para hover */
  --gray: #1f2937; /* Gris oscuro */
  --gray-light: #f9fafb; /* Gris muy claro */
  --gray-medium: #6b7280; /* Gris medio */
  --gray-dark: #111827; /* Gris casi negro */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--black);
  color: white;
  line-height: 1.6;
}

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

.section {
  padding: 100px 0; /* Más espacio en blanco */
}

.section-dark {
  background: var(--gray-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: white;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-medium);
}

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

.text-white {
  color: white;
}

/* NAVBAR */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.75rem;
  font-weight: 900;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-white {
  color: white;
}

.logo-gold {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: 0.3s;
}

/* BOTONES - JERARQUÍA CLARA */
.btn {
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

/* CTA PRINCIPAL - Color diferenciado */
.btn-cta {
  background: var(--cta);
  color: white;
  border-color: var(--cta);
  box-shadow: 0 4px 20px rgba(255, 61, 0, 0.3);
}

.btn-cta:hover {
  background: #ff5722;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 61, 0, 0.5);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(235, 221, 24, 0.4);
}

.btn-primary-nav {
  background: var(--cta);
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
}

.btn-primary-nav:hover {
  background: #ff5722;
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* HERO MEJORADO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/dominadas.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 150px 0 100px;
}

.badge {
  display: inline-block;
  background: rgba(235, 221, 24, 0.2);
  border: 2px solid var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 30px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle-main {
  font-size: 1.5rem;
  color: #d1d5db;
  margin-bottom: 20px;
  line-height: 1.5;
}

.hero-benefit {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 40px;
  padding: 15px 20px;
  background: rgba(235, 221, 24, 0.15);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ANIMACIONES PARA STATS */
.stat-number {
  transition: transform 0.3s ease;
}

.stat:hover .stat-number {
  transform: scale(1.1);
}

.stat-number.counting {
  animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

.stat {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
  text-align: center;
}

.stat:nth-child(1) {
  animation-delay: 0.2s;
}

.stat:nth-child(2) {
  animation-delay: 0.4s;
}

.stat:nth-child(3) {
  animation-delay: 0.6s;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-medium);
}

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

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--gold);
  border-radius: 20px;
  position: relative;
  animation: bounce 2s infinite;
}

.mouse::before {
  content: "";
  width: 4px;
  height: 12px;
  background: var(--gold);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* GRIDS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

/* BENEFICIOS - MÁS ESCANEABLES */
.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 15px 30px rgba(235, 221, 24, 0.2);
}

.benefit-icon {
  font-size: 4rem;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.2);
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.benefit-text {
  font-size: 0.95rem;
  color: var(--gray-medium);
}

/* CARDS CON ANIMACIONES MEJORADAS */
.card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(235, 221, 24, 0.15) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 25px 50px rgba(235, 221, 24, 0.25),
    0 10px 20px rgba(0, 0, 0, 0.5);
  border-color: rgba(235, 221, 24, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.card:hover .card-icon {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(235, 221, 24, 0.6));
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  display: inline-block;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
  transition: color 0.3s ease;
}

.card:hover .card-title {
  color: var(--gold);
}

.card-text {
  color: var(--gray-medium);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.card:hover .card-text {
  color: #d1d5db;
}

/* CTA SECTIONS - Repetidas estratégicamente */
.cta-section {
  text-align: center;
  margin-top: 80px;
  padding: 60px 40px;
  background: rgba(235, 221, 24, 0.1);
  border: 2px solid var(--gold);
  border-radius: 20px;
}

.cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 30px;
}

/* EQUIPO CON FOTOS REALES */
.team-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.team-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.4s ease;
}

.team-card:hover::after {
  width: 100%;
}

.team-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow:
    0 30px 60px rgba(235, 221, 24, 0.3),
    0 15px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(235, 221, 24, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.team-photo {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gold);
  transition: all 0.4s ease;
  border: 4px solid transparent;
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.team-card:hover .team-photo {
  transform: scale(1.1);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(235, 221, 24, 0.5);
}

.team-card:hover .team-photo img {
  transform: scale(1.1);
}

.team-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--black);
  transition: all 0.3s ease;
}

.team-card:hover .team-placeholder {
  transform: scale(1.2);
}

.team-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
  transition: all 0.3s ease;
}

.team-card:hover .team-name {
  color: var(--gold);
  transform: translateY(-3px);
}

.team-role {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.team-card:hover .team-role {
  letter-spacing: 1px;
}

.team-bio {
  color: var(--gray-medium);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.team-card:hover .team-bio {
  color: #d1d5db;
}

/* TESTIMONIOS - PRUEBA SOCIAL */
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 15px 30px rgba(235, 221, 24, 0.2);
}

.stars {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--gold);
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #d1d5db;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--gold);
}

/* GALERÍA MEJORADA */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1/1;
  cursor: pointer;
  transition: all 0.4s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(235, 221, 24, 0.3) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow:
    0 20px 40px rgba(235, 221, 24, 0.35),
    0 10px 20px rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  z-index: 10;
}

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

.gallery-item:hover img {
  transform: scale(1.2) rotate(2deg);
}

/* PRICING CON URGENCIA */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(235, 221, 24, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transition: all 0.5s ease;
}

.pricing-card:hover::before {
  width: 500px;
  height: 500px;
}

.pricing-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow:
    0 30px 60px rgba(235, 221, 24, 0.35),
    0 15px 30px rgba(0, 0, 0, 0.6);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.pricing-featured {
  border-color: var(--gold);
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(235, 221, 24, 0.3);
}

.pricing-featured:hover {
  transform: scale(1.12) translateY(-15px);
  box-shadow:
    0 40px 80px rgba(235, 221, 24, 0.45),
    0 20px 40px rgba(0, 0, 0, 0.7);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cta);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 61, 0, 0.4);
}

.pricing-card:hover .pricing-badge {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 61, 0, 0.6);
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  transition: all 0.3s ease;
}

.pricing-card:hover .pricing-title {
  color: var(--gold);
  transform: scale(1.05);
}

.pricing-price {
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-price {
  transform: scale(1.1);
}

.price-currency {
  font-size: 1.5rem;
  color: var(--gold);
  vertical-align: top;
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
}

.price-amount-large {
  font-size: 3rem;
  font-weight: 900;
  color: var(--cta);
}

.pricing-discount {
  color: var(--cta);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.pricing-card:hover .pricing-discount {
  transform: scale(1.1);
  text-shadow: 0 0 10px rgba(255, 61, 0, 0.6);
}

.pricing-features {
  list-style: none;
  margin: 30px 0;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0;
  color: #d1d5db;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.pricing-card:hover .pricing-features li {
  padding-left: 10px;
  color: white;
}

/* CONTACTO */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
}

.contact-info {
  color: #d1d5db;
}

.contact-info h3 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item strong {
  display: block;
  margin-bottom: 8px;
  color: white;
}

.contact-item a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--cta);
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.social-btn {
  padding: 12px 24px;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s;
}

.social-btn:hover {
  background: var(--cta);
  color: white;
  transform: translateY(-2px);
}

/* FORMULARIO */
.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-medium);
}

/* FOOTER COMPLETO */
.footer {
  background: var(--black);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 1.75rem;
  margin-bottom: 15px;
}

.footer-brand p {
  color: var(--gray-medium);
  margin-bottom: 10px;
}

.footer-address {
  color: var(--gold) !important;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--gold);
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--gray-medium);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-contact p {
  color: var(--gray-medium);
  line-height: 1.8;
}

.footer-contact a {
  color: var(--gold);
  text-decoration: none;
}

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

.footer-cta h4 {
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-promo {
  margin-top: 15px;
  color: var(--gold);
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-medium);
}

.footer-seo {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--gray-medium);
}

/* WHATSAPP FLOTANTE */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s;
  animation: whatsappPulse 2s infinite;
}

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

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

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

  .grid-5 {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--black);
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }

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

  .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle-main {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section {
    padding: 60px 0;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

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

  .cta-section {
    padding: 40px 20px;
  }

  .cta-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

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

  .gallery-item {
    max-width: 300px;
    margin: 0 auto;
    aspect-ratio: 4/3;
  }

  .grid-5 {
    grid-template-columns: 1fr;
  }
}
