/* ====== BASE ====== */
* {
  margin: 0; padding: 0; box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}
body {
  background-color: #fffaf7;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ====== NAVBAR ====== */
nav {
  display: flex; justify-content: space-between; align-items: center;
  background: #fff; padding: 10px 20px;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
nav .logo {
  font-weight: 700; font-size: 1.2rem;
  color: #007bff; text-decoration: none;
}
nav ul {
  list-style: none; display: flex; gap: 15px;
}
nav ul li a {
  text-decoration: none; color: #333;
  font-weight: 500; transition: .3s;
}
nav ul li a:hover { color: #007bff; }
.menu-toggle {
  display: none; font-size: 1.6rem; cursor: pointer;
}
@media (max-width: 768px) {
  nav ul {
    display: none; flex-direction: column; align-items: center;
    background: #fff; position: absolute; right: 0; top: 55px;
    width: 180px; border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  nav ul.show { display: flex; }
  .menu-toggle { display: block; color: #007bff; }
}
/* ====== Navbar con Logo ====== */
.navbar {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
}

.navbar-logo {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}
.navbar-logo:hover {
  transform: scale(1.05);
}

.navbar-light .navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: #007bff;
}

/* Efecto al hacer scroll */
.navbar.scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background-color: rgba(255,255,255,0.97);
}

@media (max-width: 768px) {
  .navbar-logo {
    height: 40px;
  }
}

/* ====== HEADER ====== */
/* 🔹 Hero con fondo + overlay degradado */
.hero-header {
  background: url('img/DSC08254.jpg') center/cover no-repeat;
  min-height: 85vh;
  position: relative;
  color: #fff;
  overflow: hidden;
}
.hero-header .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(0,150,255,0.5),
    rgba(255,255,255,0.15),
    rgba(0,150,255,0.4)
  );
  z-index: 1;
  backdrop-filter: brightness(0.9);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 15px;
  max-width: 800px;
}
.hero-content h1 {
  text-shadow: 0 3px 8px rgba(0,0,0,0.4);
}
.hero-content p {
  font-size: 1.1rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* 🔹 Botón con colores bandera argentina */
.btn-arg {
  background: linear-gradient(90deg, #00bfff, #ffffff, #00bfff);
  border: none;
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 28px;
  transition: all 0.3s ease;
}
.btn-arg:hover {
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(0,191,255,0.5);
}

/* 🔹 Navbar moderna */
.navbar {
  transition: all 0.4s ease;
}
.navbar-brand {
  font-size: 1.2rem;
  letter-spacing: 0.3px;
}
.navbar-light .navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  margin: 0 8px;
  transition: color 0.3s;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: #007bff;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95) !important;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* 🔹 Responsivo */
@media (max-width: 768px) {
  .hero-header { min-height: 70vh; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-content p { font-size: 1rem; }
}


/* ====== BANNER ====== */
.banner-section {
  background: linear-gradient(to right, #6ec1e4, #fcd34d);
  padding: 60px 15px; text-align: center;
  color: #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.banner-content {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 30px; max-width: 1000px; margin: auto;
}
.banner-logo {
  width: 160px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  transition: transform .3s;
}
.banner-logo:hover { transform: scale(1.05); }
.banner-text h2 { font-size: 1.6rem; font-weight: 700; }
.banner-text p { font-size: 1rem; margin: 10px 0 20px; }
.btn-banner {
  background-color: #007bff;
}
.btn-banner:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

/* ====== FOOTER ====== */
footer {
  background-color: #111;
  color: #eee;
  text-align: center;
  padding: 30px 15px;
  font-size: 0.85rem;
}
footer a {
  color: #6ec1e4;
  text-decoration: none;
}
footer a:hover { text-decoration: underline; }

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
  header h1 { font-size: 1.9rem; }
  section h2 { font-size: 1.6rem; }
}
@media (max-width: 576px) {
  header { padding: 70px 10px; }
  header h1 { font-size: 1.6rem; }
  .banner-text h2 { font-size: 1.3rem; }
  .btn, .btn-banner, .btn-azul { padding: 8px 18px; font-size: 0.9rem; }
}
/* ====== FRANQUICIA ====== */
.franquicia-section {
  background: linear-gradient(135deg, #f8fbff, #fdfcfb);
  position: relative;
  overflow: hidden;
}

.franquicia-img {
  max-width: 420px;
  border-radius: 12px;
  transition: transform 0.4s ease;
}
.franquicia-img:hover {
  transform: scale(1.05);
}

/* 💸 Íconos de pesos flotando */
.floating-icons {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.floating-icons .icon {
  position: absolute;
  bottom: -50px;
  left: calc(10% + 80px * var(--i));
  font-size: 2rem;
  color: rgba(0, 123, 255, 0.15);
  animation: floatUp 8s linear infinite;
  animation-delay: calc(-2s * var(--i));
}
.floating-icons .icon:nth-child(1) { --i: 0; font-size: 1.8rem; color: rgba(0,191,255,0.15); }
.floating-icons .icon:nth-child(2) { --i: 1; font-size: 2.2rem; color: rgba(0,150,255,0.1); }
.floating-icons .icon:nth-child(3) { --i: 2; font-size: 1.6rem; color: rgba(0,191,255,0.2); }

@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(-800px) scale(1.3); opacity: 0; }
}

/* ====== Botón Azul ====== */
.btn-azul {
  background-color: #007bff !important;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}
.btn-azul:hover {
  background-color: #0056b3 !important;
  transform: scale(1.07);
  box-shadow: 0 0 15px rgba(0,123,255,0.4);
}

/* ====== Responsivo ====== */
@media (max-width: 768px) {
  .franquicia-section { text-align: center; padding: 60px 15px; }
  .franquicia-img { max-width: 300px; }
  .floating-icons .icon { font-size: 1.5rem; }
}
/* ====== Banner Moderno ====== */
.banner-modern {
  background: linear-gradient(135deg, #f8fbff, #ffffff, #eef6fb);
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}

/* 💨 Fondo con partículas celestes */
.banner-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='1.5' fill='%23007bff22'/%3E%3Ccircle cx='60' cy='90' r='1.2' fill='%23007bff22'/%3E%3Ccircle cx='100' cy='30' r='1.4' fill='%23007bff22'/%3E%3C/svg%3E");
  opacity: 0.25;
  background-size: 120px;
  animation: moveDots 45s linear infinite;
}
@keyframes moveDots {
  from { background-position: 0 0; }
  to { background-position: 1000px 800px; }
}

/* ====== Ícono de Delivery ====== */
.delivery-icon-wrapper {
  position: relative;
  display: inline-block;
  font-size: 7rem;
  color: #007bff;
  animation: floatIcon 4s ease-in-out infinite;
}
.delivery-icon {
  font-size: 7rem;
  color: #007bff;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}
.delivery-bag {
  position: absolute;
  top: 15px;
  right: 18%;
  font-size: 2.3rem;
  color: #ffb703;
  animation: pulseBag 2.5s ease-in-out infinite;
}

@keyframes floatIcon {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulseBag {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.85; }
}

/* ====== Texto ====== */
.banner-modern h2 {
  color: #007bff;
  font-size: 2rem;
}
.banner-modern p {
  color: #333;
  font-size: 1.1rem;
}

/* ====== Botón Delivery ====== */
.btn-azul {
  background-color: #007bff !important;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}
.btn-azul:hover {
  background-color: #0056b3 !important;
  transform: scale(1.07);
  box-shadow: 0 0 15px rgba(0,123,255,0.4);
}

/* ====== Responsivo ====== */
@media (max-width: 768px) {
  .delivery-icon-wrapper { font-size: 5rem; }
  .banner-modern h2 { font-size: 1.5rem; }
  .banner-modern p { font-size: 1rem; }
}
/* ====== MENÚ DE CAFETERÍA ====== */
.menu-section {
  background: linear-gradient(135deg, #fffaf7, #fff3ed, #fffaf7);
  position: relative;
  overflow: hidden;
}

.menu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='1.5' fill='%23b25f2c22'/%3E%3Ccircle cx='60' cy='90' r='1.2' fill='%23b25f2c22'/%3E%3Ccircle cx='100' cy='30' r='1.4' fill='%23b25f2c22'/%3E%3C/svg%3E");
  opacity: 0.2;
  background-size: 120px;
  animation: movePattern 40s linear infinite;
}
@keyframes movePattern {
  from { background-position: 0 0; }
  to { background-position: 1000px 800px; }
}

/* 📸 Imagen */
/* ====== MENÚ DE CAFETERÍA ====== */
.menu-section {
  background: linear-gradient(135deg, #fffefc, #fff8f3, #fffefc);
  position: relative;
  overflow: hidden;
}

/* 🌾 Fondo animado sutil */
.menu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='1.5' fill='%23b25f2c22'/%3E%3Ccircle cx='60' cy='90' r='1.2' fill='%23b25f2c22'/%3E%3Ccircle cx='100' cy='30' r='1.4' fill='%23b25f2c22'/%3E%3C/svg%3E");
  opacity: 0.2;
  background-size: 120px;
  animation: movePattern 40s linear infinite;
}
@keyframes movePattern {
  from { background-position: 0 0; }
  to { background-position: 1000px 800px; }
}

/* ☕ Imagen */
.menu-img {
  max-width: 480px;
  border-radius: 15px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.menu-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* 🟤 Colores de texto */
.text-cafe {
  color: #b25f2c;
}

/* 🌈 Botón elegante con gradiente y brillo */
.btn-cafe-grad {
  background: linear-gradient(90deg, #b25f2c, #e89c63, #b25f2c);
  background-size: 200% auto;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 0 12px rgba(178, 95, 44, 0.3);
}
.btn-cafe-grad:hover {
  background-position: right center;
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(178, 95, 44, 0.5);
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .menu-img { max-width: 300px; margin-bottom: 20px; }
  .menu-section h2 { font-size: 1.6rem; }
  .menu-section p { font-size: 1rem; }
}
/* ====== SUSCRIPCIÓN ====== */
.suscripcion-section {
  background: linear-gradient(135deg, #fffdf9, #fff8f3, #fdfaf8);
  position: relative;
  overflow: hidden;
}

/* 💸 Fondo animado sutil */
.suscripcion-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='5' cy='5' r='1.5' fill='%23b25f2c22'/%3E%3Ccircle cx='80' cy='40' r='1' fill='%23b25f2c22'/%3E%3Ccircle cx='50' cy='80' r='1.5' fill='%23b25f2c22'/%3E%3C/svg%3E");
  background-size: 120px;
  opacity: 0.3;
  animation: moveBg 60s linear infinite;
}
@keyframes moveBg {
  from { background-position: 0 0; }
  to { background-position: 1000px 800px; }
}

/* 🎨 Formulario */
#formSuscripcion {
  background: #ffffffcc;
  backdrop-filter: blur(5px);
  border-radius: 12px;
  transition: all 0.4s ease;
}
#formSuscripcion:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
#formSuscripcion input, 
#formSuscripcion label {
  font-size: 0.95rem;
}

/* 🟤 Botón degradado */
.btn-cafe-grad {
  background: linear-gradient(90deg, #b25f2c, #e89c63, #b25f2c);
  background-size: 200% auto;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 0 12px rgba(178, 95, 44, 0.3);
}
.btn-cafe-grad:hover {
  background-position: right center;
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(178, 95, 44, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .suscripcion-section { text-align: center; }
  #formSuscripcion { padding: 20px; }
}
.blog-section .card {
  transition: all 0.3s ease;
  border-radius: 1rem;
  background-color: #fff;
}
.blog-section .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.blog-section i {
  transition: transform 0.3s ease;
}
.blog-section .card:hover i {
  transform: scale(1.2);
}

