/* ==========================================================
   BURGER MASTER - MODERN & RESPONSIVE DESIGN SYSTEM
   ========================================================== */

:root {
  /* Colors */
  --primary: #e22717;
  --primary-hover: #c41c0e;
  --primary-glow: rgba(226, 39, 23, 0.3);
  --accent: #ffbd4c;
  --accent-hover: #f39c12;
  --accent-glow: rgba(255, 189, 76, 0.35);
  --dark: #0f0c0b;
  --dark-light: #221d1b;
  --text-main: #1c1817;
  --text-muted: #5e5553;
  --white: #ffffff;

  /* Glassmorphism Surfaces */
  --glass-section: rgba(255, 255, 255, 0.88);
  --glass-card: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.95);
  --glass-shadow: 0 15px 35px rgba(26, 12, 8, 0.08);
  --glass-shadow-hover: 0 20px 45px rgba(226, 39, 23, 0.15);

  /* Typography */
  --font-title: "Bebas Neue", sans-serif;
  --font-body: "Poppins", sans-serif;

  /* Spacings & Borders */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 999px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================
   RESET & BASE STYLES
   ========================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-image: url("../img/background/bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  -webkit-backdrop-filter: blur(35px);
  backdrop-filter: blur(35px);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==========================================================
   TYPOGRAPHY & TAGS
   ========================================================== */
h1, h2, h3, h4 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  font-family: var(--font-title);
  font-size: clamp(48px, 6.5vw, 92px);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

h2 {
  font-family: var(--font-title);
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 25px;
  font-weight: 400;
}

.section-tag {
  display: inline-block;
  color: var(--primary);
  background-color: rgba(226, 39, 23, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

/* ==========================================================
   BUTTONS & CTAS
   ========================================================== */
.btn-1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: linear-gradient(135deg, var(--primary) 0%, #c41c0e 100%);
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px var(--primary-glow);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-1:hover {
  background: linear-gradient(135deg, var(--dark) 0%, #201a18 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 12, 11, 0.25);
  color: var(--white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  color: var(--dark);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--accent);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--accent-glow);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background-color: var(--primary);
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.btn-nav:hover {
  background-color: var(--dark);
  transform: scale(1.04);
}

/* ==========================================================
   HEADER & NAVBAR
   ========================================================== */
.header {
  position: relative;
  min-height: 100vh;
  padding: 110px 0 60px 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.86) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5%;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1000;
  transition: var(--transition);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-title);
  letter-spacing: 1px;
}

.logo-icon {
  font-size: 26px;
  color: var(--primary);
}

.logo-accent {
  color: var(--dark);
}

.navbar {
  display: flex;
  align-items: center;
  gap: 25px;
}

.navbar ul {
  display: flex;
  align-items: center;
}

.navbar ul li a {
  font-size: 16px;
  padding: 10px 18px;
  color: var(--dark);
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}

.navbar ul li a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: var(--transition);
}

.navbar ul li a:hover {
  color: var(--primary);
}

.navbar ul li a:hover::after {
  transform: scaleX(1);
}

#menu {
  display: none;
}

.menu-label {
  display: none;
  cursor: pointer;
}

.menu-icono {
  width: 30px;
  height: 30px;
}

/* ==========================================================
   HERO CONTENT
   ========================================================== */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 20px;
}

.header-text {
  flex: 1 1 50%;
}

.badge-promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 189, 76, 0.2);
  color: #b87a00;
  border: 1px solid rgba(255, 189, 76, 0.5);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.header-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  max-width: fit-content;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-title);
  font-size: 26px;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 35px;
  background-color: rgba(0, 0, 0, 0.1);
}

.header-img {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-wrapper {
  position: relative;
  max-width: 540px;
}

.img-wrapper img {
  width: 100%;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
  animation: floatHero 5s ease-in-out infinite;
}

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

.floating-badge {
  position: absolute;
  bottom: 25px;
  left: -10px;
  background: rgba(255, 255, 255, 0.95);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--glass-border);
  animation: floatHero 4s ease-in-out infinite reverse;
}

.floating-badge i {
  font-size: 28px;
  color: var(--accent);
}

.floating-badge strong {
  display: block;
  font-size: 15px;
  color: var(--dark);
}

.floating-badge span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================
   SECTION: ESPECIALIDADES / POPULARES
   ========================================================== */
.information {
  padding: 90px 0;
  background-color: var(--glass-section);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.information-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.information-box {
  flex: 1 1 52%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.card-1 {
  position: relative;
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 85px 22px 25px 22px;
  text-align: center;
  box-shadow: var(--glass-shadow);
  transition: var(--transition);
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}

.card-1:hover {
  transform: translateY(-10px);
  box-shadow: var(--glass-shadow-hover);
  background: rgba(255, 255, 255, 0.92);
}

.card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.card-badge.gold {
  background-color: var(--accent);
  color: var(--dark);
}

.card-img-container {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img-container img {
  width: 100%;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
  transition: var(--transition);
}

.card-1:hover .card-img-container img {
  transform: scale(1.08) rotate(2deg);
}

.card-stars {
  color: #f1c40f;
  font-size: 13px;
  margin-bottom: 8px;
}

.card-1 h3 {
  font-size: 19px;
  color: var(--dark);
  margin-bottom: 8px;
}

.card-1 p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 15px;
}

.card-footer .price {
  font-family: var(--font-title);
  font-size: 26px;
  color: var(--primary);
  font-weight: 700;
}

.btn-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--dark);
  color: var(--white);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.btn-card:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.information-txt {
  flex: 1 1 48%;
}

.features-list {
  margin-bottom: 30px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--text-main);
}

.features-list li i {
  color: #27ae60;
  font-size: 18px;
  margin-top: 3px;
}

/* ==========================================================
   SECTIONS: GENERAL (CALIDAD & PARRILLA)
   ========================================================== */
.general {
  padding: 85px 0;
  background-color: var(--glass-section);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.general-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.general-text {
  flex: 1 1 50%;
}

.general-img {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
}

.general-img-wrap {
  max-width: 480px;
}

.general-img-wrap img {
  width: 100%;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.18));
  transition: var(--transition);
}

.general-img-wrap img:hover {
  transform: scale(1.03);
}

.quality-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 25px 0 35px 0;
}

.q-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.q-badge i {
  color: var(--primary);
  font-size: 18px;
}

/* ==========================================================
   SECTION: APP MOBILE
   ========================================================== */
.app {
  padding: 90px 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 245, 235, 0.88) 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.app-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.app-img {
  flex: 1 1 45%;
  text-align: center;
}

.app-img img {
  max-width: 360px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
  animation: floatHero 6s ease-in-out infinite;
}

.app-text {
  flex: 1 1 55%;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.app-feat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.app-feat-item i {
  width: 36px;
  height: 36px;
  background-color: rgba(226, 39, 23, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.app-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-link {
  display: inline-block;
  transition: var(--transition);
}

.store-link img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.store-link:hover {
  transform: translateY(-4px);
  filter: brightness(1.08);
}

/* ==========================================================
   SECTION: CONTACTO & RESERVAS
   ========================================================== */
.contact {
  padding: 95px 0;
  background-color: var(--glass-section);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-header {
  text-align: center;
  max-width: 750px;
  margin-bottom: 50px;
}

.contact-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.contact-form-box {
  flex: 1 1 60%;
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  transition: var(--transition);
}

.contact-form-box h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-size: 22px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 15px;
}

.contact-form-box h3 i {
  color: var(--primary);
}

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

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.input-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon i {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
  font-size: 16px;
  pointer-events: none;
}

.input-icon.textarea-icon i {
  top: 16px;
}

.input-icon input,
.input-icon select,
.input-icon textarea {
  width: 100%;
  padding: 13px 16px 13px 44px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background-color: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
}

.input-icon select {
  cursor: pointer;
  appearance: auto;
}

.input-icon textarea {
  resize: vertical;
  min-height: 90px;
}

.input-icon input:focus,
.input-icon select:focus,
.input-icon textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
  background-color: var(--white);
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, #c41c0e 100%);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 8px 25px var(--primary-glow);
  transition: var(--transition);
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--dark) 0%, #201a18 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 12, 11, 0.25);
}

/* Estado de Éxito In-Card */
.form-success-state {
  text-align: center;
  padding: 20px 10px;
  animation: fadeInSuccess 0.4s ease forwards;
}

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

.form-success-state .success-icon {
  font-size: 60px;
  color: #27ae60;
  margin-bottom: 15px;
}

.form-success-state h3 {
  border-bottom: none;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 10px;
}

.form-success-state p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 25px;
  line-height: 1.5;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.btn-whatsapp-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  padding: 14px 25px;
  background-color: #25d366;
  color: var(--white);
  font-weight: 700;
  border-radius: var(--radius-full);
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.btn-whatsapp-action:hover {
  background-color: #1eb956;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.45);
  color: var(--white);
}

.btn-reset-form {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
  padding: 5px;
  transition: var(--transition);
}

.btn-reset-form:hover {
  color: var(--primary);
}

/* Tarjetas de Información */
.contact-info-cards {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.info-card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(226, 39, 23, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.info-card.highlight-card {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.12) 0%, rgba(255, 255, 255, 0.85) 100%);
  border-color: rgba(37, 211, 102, 0.35);
}

.info-card.highlight-card .info-card-icon {
  background-color: #25d366;
  color: var(--white);
}

.info-card-text h4 {
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--dark);
}

.info-card-text p {
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--text-muted);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-weight: 700;
  color: #128c7e;
  font-size: 15px;
  transition: var(--transition);
}

.whatsapp-link:hover {
  color: #075e54;
  gap: 12px;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  padding: 80px 0 35px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, #f7f3ee 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .logo {
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 14px;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h3 {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 25px;
  font-size: 14px;
  color: var(--text-muted);
}

.crafted-by i {
  color: var(--primary);
}

/* ==========================================================
   FLOATING WHATSAPP & TOAST NOTIFICATION
   ========================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: var(--white);
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background-color: var(--dark);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(-5px);
}

/* Toast flotante superior - Totalmente invisible por defecto */
.toast {
  position: fixed;
  top: 25px;
  right: 25px;
  background: #27ae60;
  color: var(--white);
  padding: 16px 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-30px);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.toast i {
  font-size: 28px;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.toast p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
}

/* ==========================================================
   RESPONSIVE DESIGN & MEDIA QUERIES
   ========================================================== */

/* Tablets & Small Laptops (max-width: 991px) */
@media (max-width: 991px) {
  .menu {
    padding: 16px 20px;
  }

  .menu-label {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--accent);
    flex-direction: column;
    padding: 25px 20px;
    gap: 15px;
    display: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .menu .navbar ul {
    flex-direction: column;
    width: 100%;
    gap: 5px;
  }

  .menu .navbar ul li {
    width: 100%;
    text-align: center;
  }

  .menu .navbar ul li a {
    display: block;
    padding: 12px;
    font-size: 17px;
  }

  .navbar .btn-nav {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px;
  }

  #menu:checked ~ .navbar {
    display: flex;
    animation: fadeInMenu 0.3s ease-in-out forwards;
  }

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

  .header {
    padding-top: 100px;
  }

  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .header-buttons {
    justify-content: center;
  }

  .hero-stats {
    margin: 0 auto;
  }

  .floating-badge {
    left: 0;
    bottom: 0;
  }

  /* Information Section */
  .information-content {
    flex-direction: column;
    gap: 60px;
  }

  .information-box {
    width: 100%;
  }

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

  .features-list li {
    justify-content: center;
    text-align: left;
  }

  /* General Sections */
  .general-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .general-reverse .general-content {
    flex-direction: column-reverse;
  }

  .quality-badges {
    justify-content: center;
  }

  /* App Section */
  .app-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .app-features {
    align-items: center;
  }

  .app-icons {
    justify-content: center;
  }

  /* Contact Section */
  .contact-container {
    flex-direction: column;
  }

  .contact-form-box,
  .contact-info-cards {
    width: 100%;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .toast {
    left: 20px;
    right: 20px;
    top: 20px;
    transform: translateY(-20px);
  }
}

/* Mobile Devices (max-width: 640px) */
@media (max-width: 640px) {
  .header {
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .header-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-1,
  .btn-secondary {
    width: 100%;
  }

  .hero-stats {
    width: 100%;
    justify-content: space-around;
    gap: 10px;
    padding: 15px 10px;
  }

  .stat-num {
    font-size: 20px;
  }

  .stat-label {
    font-size: 11px;
  }

  .information-box {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .card-1 {
    margin-top: 20px;
  }

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

  .contact-form-box {
    padding: 25px 18px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }

  .footer-col ul li a {
    justify-content: center;
  }

  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 28px;
  }
}
