:root {
  --primary-color: #ffd500;
  --bg-color: #0c0c0c;
  --text-color: #fff;
  --font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: 20px;
  background-color: var(--bg-color);
  color: var(--text-color);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  background: rgba(12, 12, 12, 0.95);
  color: var(--text-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.logo {
  font-weight: 700;
  font-size: 20px;
}

.logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.menu a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 20px;
  padding: 5px 12px;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu a:hover {
  background: var(--primary-color);
  color: var(--bg-color);
  text-decoration: none;
}

.cta {
  background: var(--primary-color);
  color: var(--bg-color);
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta:hover {
  background: #e6c200;
  transform: scale(1.05);
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

.cta:hover::before {
  left: 100%;
}

.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 80px;
  background-image: url('../images/principaa.jpg');
  background-size: cover;
  background-position: 120% center;
  min-height: 500px;
  position: relative;
}

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

.hero-content {
  flex: 1.5;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--primary-color);
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 0px 0;
  line-height: 1.2;
  animation: fadeInUp 1s ease, glow 3s ease-in-out infinite;
}

.hero-subtitle {
  color: var(--text-color);
  font-size: 22px;
  line-height: 1.5;
  margin: 0;
  animation: fadeInUp 1.2s ease;
}

.hero-image {
  flex: 1;
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.hero-cta {
  background: var(--primary-color);
  color: var(--bg-color);
  border: none;
  padding: 16px 32px;
  border-radius: 6px;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1.4s ease;
}

.hero-cta:hover {
  background: #e6c200;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 213, 0, 0.4);
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

.hero-cta:hover::before {
  left: 100%;
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  touch-action: pan-y;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide .hero-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  min-height: 320px;
}

.hero-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero-controls button {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.hero-controls button:hover {
  background: rgba(255, 255, 255, 0.35);
}

.hero-indicators {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
}

.hero-indicator.is-active {
  background: var(--primary-color);
}

/* Ajustes responsivos específicos del carrusel */
@media (max-width: 768px) {
  .hero-slide {
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
    padding-bottom: 80px; /* espacio para que los controles queden por debajo */
  }

  .hero-slide .hero-content { order: 1; }
  .hero-slide .hero-image { order: 2; width: 100%; }

  .hero-slide .hero-image {
    min-height: 260px;
    border-radius: 10px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: translateY(-8px);
  }

  .hero-controls {
    bottom: 12px;
    right: 12px;
    gap: 10px;
  }

  .hero-controls button {
    width: 44px;
    height: 44px;
  }

  .hero-indicators {
    bottom: 16px;
  }
}

@media (max-width: 480px) {
  .hero-slide {
    gap: 16px;
    padding: 40px 12px;
    padding-bottom: 96px; /* más espacio en pantallas pequeñas */
  }

  .hero-slide .hero-image {
    min-height: 200px;
    transform: translateY(-12px);
  }

  .hero-controls button {
    width: 44px;
    height: 44px;
    border-width: 1px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-controls button,
  .hero-indicator {
    transition: none !important;
    animation: none !important;
  }
}

.modelo-section {
  padding: 80px 60px;
  position: relative;
  background: var(--bg-color);
  /*background-image: url('../images/principal222.jpg');*/
  background-size: cover;
  background-position: center;
  text-align: center;
  border-top: 1px solid var(--primary-color);
}

.modelo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.modelo-text {
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease, glow 3s ease-in-out infinite;
}

.modelo-subtitle {
  color: var(--text-color);
  font-size: 32px;
  font-weight: 600;
  margin: 10px 0 0 0;
  animation: fadeInUp 1.2s ease;
}

.modelo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
  position: relative;
  z-index: 1;
}

.modelo-whatsapp {
  background: #25d366;
  color: var(--text-color);
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  position: relative;
  overflow: hidden;
}

.modelo-whatsapp:hover {
  background: #20ba5a;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.nosotros {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 80px;
  background-image: url('../images/principal3.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 500px;
  position: relative;
}

.nosotros::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.85);
  z-index: 1;
}

.nosotros-content {
  flex: 1;
  position: relative;
  z-index: 2;
  text-align: center;
}

.nosotros-title {
  color: var(--primary-color);
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.nosotros-text {
  color: var(--text-color);
  font-size: 22px;
  line-height: 1.6;
  margin: 0 0 30px 0;
}

.nosotros-cta {
  background: var(--primary-color);
  color: var(--bg-color);
  border: none;
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.nosotros-cta:hover {
  background: #e6c200;
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 213, 0, 0.3);
}

.nosotros-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

.nosotros-cta:hover::before {
  left: 100%;
}

.nosotros-images {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  grid-auto-rows: 450px;
  position: relative;
  z-index: 2;
}

.nosotros-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(255, 213, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease;
}

.nosotros-images img:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 213, 0, 0.4);
}

.servicios {
  padding: 80px 80px;
  background: #1a1a1a;
  min-height: 500px;
}

.servicios-title {
  color: var(--primary-color);
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 60px 0;
  animation: slideInUp 0.6s ease;
  animation: fadeInUp 1s ease, glow 3s ease-in-out 0.5s infinite;
}

.servicios-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}

.servicios-item {
  background: rgba(255, 213, 0, 0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid rgba(255, 213, 0, 0.2);
  transition: all 0.4s ease;
  animation: slideInUp 0.8s ease;
  animation: fadeInUp 0.8s ease;
}

.servicios-item:hover {
  background: rgba(255, 213, 0, 0.15);
  border-color: var(--primary-color);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 213, 0, 0.2);
}

.servicios-image {
  margin-bottom: 20px;
}

.servicios-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.servicios-item:hover .servicios-image img {
  transform: scale(1.08);
}

.servicios-text {
  color: var(--text-color);
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
}

.galeria {
  padding: 80px 80px;
  background: var(--bg-color);
}

.galeria-title {
  color: var(--primary-color);
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 60px 0;
  animation: slideInUp 0.6s ease;
  animation: fadeInUp 1s ease, glow 3s ease-in-out 0.5s infinite;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
  cursor: pointer;
}

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

.galeria-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 213, 0, 0.2);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

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

.galeria-item:hover::before {
  opacity: 1;
}

.ubicacion {
  width: 100%;
  padding: 0;
  background: var(--bg-color);
}

.ubicacion-title {
  color: var(--primary-color);
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  padding: 60px 80px 30px 80px;
  margin: 0;
  animation: fadeInUp 1s ease, glow 3s ease-in-out 0.5s infinite;
}

.ubicacion-map {
  width: 100%;
  height: 500px;
  border: none;
}

/* Contacto */
.contacto {
  padding: 80px 80px;
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
  min-height: 600px;
}

.contacto-container {
  max-width: 700px;
  margin: 0 auto;
}

.contacto-title {
  color: var(--primary-color);
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 12px 0;
  animation: fadeInUp 1s ease, glow 3s ease-in-out infinite;
}

.contacto-subtitle {
  color: var(--text-color);
  font-size: 18px;
  text-align: center;
  margin: 0 0 40px 0;
  line-height: 1.5;
  animation: fadeInUp 1.2s ease;
}

.contacto-form {
  background: rgba(255, 255, 255, 0.97);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.4s ease;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-label {
  display: block;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
  font-size: 15px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  background-color: #f9fafb;
  transition: all 0.3s ease;
  box-sizing: border-box;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(255, 213, 0, 0.15);
}

.form-input:valid {
  border-color: #10b981;
}

.form-input:invalid {
  border-color: #090909;
}

.error-message {
  display: block;
  color: #dc2626;
  font-size: 13px;
  margin-top: 6px;
  min-height: 18px;
}

.mensaje-respuesta {
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  animation: slideDown 0.3s ease;
}

.mensaje-exito {
  background-color: #d4edda;
  color: #155724;
  border: 2px solid #c3e6cb;
}

.mensaje-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 2px solid #f5c6cb;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contacto-btn {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ffd500 0%, #ffb800 100%);
  color: var(--bg-color);
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 8px 20px rgba(255, 213, 0, 0.3);
}

.contacto-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 213, 0, 0.5);
  background: linear-gradient(135deg, #ffb800 0%, #ff9500 100%);
}

.contacto-btn:active {
  transform: translateY(-1px);
}

.form-note {
  text-align: center;
  color: #6b7280;
  font-size: 13px;
  margin: 12px 0 0 0;
}

.success-message {
  background: #d1fae5;
  color: #065f46;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  border-left: 5px solid #10b981;
  animation: fadeInUp 0.5s ease;
}

footer {
  background: var(--bg-color);
  padding: 40px 80px;
  border-top: 3px solid var(--primary-color);
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 213, 0, 0.1);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  transition: all 0.3s ease;
  animation: fadeInUp 1.2s ease;
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--bg-color);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 213, 0, 0.3);
  animation: pulse 1s ease-out;
}

.footer-text {
  color: var(--text-color);
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 213, 0, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 213, 0, 0);
  }
}

@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255, 213, 0, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 213, 0, 0.8);
  }
}

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 28px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

#menu-checkbox {
  display: none;
}

/* Media Queries - Tablets & Small Laptops (Max Width 768px) */
@media (max-width: 768px) {
  header {
    padding: 5px 12px;
  }
  
  .logo img {
    height: 80px;
  }

  /* Menu Mobile */
  .menu-toggle {
    display: flex;
  }

  .actions {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #0c0c0c;
    flex-direction: column;
    padding: 20px;
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    z-index: 999;
  }

  #menu-checkbox:checked ~ .actions {
    display: flex !important;
  }

  #menu-checkbox:checked ~ .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  #menu-checkbox:checked ~ .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  #menu-checkbox:checked ~ .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .menu {
    flex-direction: column;
    gap: 0;
  }

  .menu li {
    border-bottom: 1px solid rgba(255, 213, 0, 0.2);
  }

  .menu a {
    display: block;
    padding: 15px 0;
    font-size: 14px;
  }

  .menu a:hover {
    background: rgba(255, 213, 0, 0.1);
    color: var(--primary-color);
    padding-left: 10px;
    transition: all 0.3s ease;
  }

  .cta {
    margin-top: 15px;
    width: 100%;
    font-size: 14px;
    padding: 8px 12px;
    margin-left: 0 !important;
  }

  .cta:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 213, 0, 0.3);
  }

  /* Hero */
  .hero {
    flex-direction: column;
    padding: 30px 20px;
    min-height: auto;
  }

  .hero-content {
    flex: 1;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-cta {
    font-size: 16px;
    padding: 12px 24px;
  }

  /* Sections */
  .modelo-section {
    padding: 40px 20px;
  }
  
  .modelo-text {
    font-size: 32px;
  }

  .modelo-subtitle {
    font-size: 18px;
  }
  
  .modelo-whatsapp {
    padding: 14px 28px;
    font-size: 16px;
  }

  /* Ajustes responsive para el bloque "¿Quieres ser modelo web cam?" */
  .modelo-container {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .modelo-container > div {
    width: 100%;
  }
  .modelo-whatsapp {
    align-self: center;
  }

  .nosotros {
    flex-direction: column;
    padding: 60px 40px;
    background-attachment: scroll;
  }

  .nosotros-title {
    font-size: 36px;
  }

  .nosotros-text {
    font-size: 16px;
  }
  
  .nosotros-images {
    grid-template-columns: 1fr;
  }
  
  .nosotros-images img {
    grid-auto-rows: 250px;
  }

  .servicios {
    padding: 60px 40px;
  }
  
  .servicios-title {
    font-size: 36px;
  }
  
  .servicios-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .servicios-text {
    font-size: 16px;
  }

  .galeria {
    padding: 60px 40px;
  }
  
  .galeria-title {
    font-size: 36px;
  }
  
  .galeria-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ubicacion-title {
    font-size: 28px;
    padding: 40px 20px 20px 20px;
  }
  
  .ubicacion-map {
    height: 350px;
  }

  .contacto {
    padding: 60px 20px;
  }
  
  .contacto-title {
    font-size: 36px;
  }
  
  .contacto-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .contacto-form {
    padding: 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contacto-btn {
    font-size: 16px;
    padding: 14px 24px;
  }
  
  footer {
    padding: 30px 20px;
  }
  
  .footer-social {
    gap: 15px;
  }
  
  .social-link {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  .footer-text {
    font-size: 14px;
  }
}

/* Media Queries - Mobile (Max Width 480px) */
@media (max-width: 480px) {
  .hero {
    padding: 20px 15px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 14px;
  }
  
  .hero-cta {
    font-size: 14px;
    padding: 10px 20px;
  }
  
  .modelo-text {
    font-size: 24px;
  }

  .modelo-subtitle {
    font-size: 14px;
  }
  
  .modelo-whatsapp {
    padding: 10px 20px;
    font-size: 14px;
  }
  /* En móviles muy pequeños, asegurar buena alineación */
  .modelo-container {
    gap: 12px;
  }
  .modelo-whatsapp {
    max-width: 320px;
    width: auto;
  }

  .nosotros-title {
    font-size: 28px;
  }

  .servicios {
    padding: 30px 15px;
  }

  .servicios-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .servicios-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .galeria {
    padding: 30px 15px;
  }

  .galeria-title {
    font-size: 28px;
  }

  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  /* Even smaller screens */
  @media (max-width: 360px) {
    .galeria-grid {
      grid-template-columns: 1fr;
    }
  }

  .ubicacion-title {
    font-size: 22px;
    padding: 30px 15px 15px 15px;
  }
  
  .ubicacion-map {
    height: 300px;
  }

  .contacto {
    padding: 40px 15px;
  }
  
  .contacto-title {
    font-size: 28px;
  }
  
  .contacto-subtitle {
    font-size: 14px;
  }
  
  .contacto-form {
    padding: 20px;
  }
  
  .form-label {
    font-size: 14px;
  }
  
  .form-input {
    font-size: 15px;
    padding: 12px 14px;
  }
  
  footer {
    padding: 20px 15px;
  }
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  /* Botón secundario (WhatsApp) */
  .contacto-btn.contacto-btn-secundario {
    background: #25d366;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .contacto-btn.contacto-btn-secundario:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  }

  /* Barra inferior WhatsApp */
  .whatsapp-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -80px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.25);
    z-index: 9998;
    transition: bottom 0.3s ease;
  }

  .whatsapp-bottom-bar.show {
    bottom: 0;
  }

  .whatsapp-bottom-bar.hide {
    bottom: -80px;
  }

  .bottom-bar-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .bottom-bar-text {
    font-weight: 600;
  }

  .bottom-bar-btn {
    background: #fff;
    color: #128c7e;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  .bottom-bar-btn:hover {
    filter: brightness(0.95);
  }

  .bottom-bar-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
  }

  @media (max-width: 768px) {
    .whatsapp-bottom-bar {
      padding: 10px 12px;
    }
    .bottom-bar-text {
      display: none;
    }
  }
}