/* ==========================================
   FUENTE PERSONALIZADA EXMOUTH
   ========================================== */
   @font-face {
    font-family: 'Exmouth';
    src: url('../fonts/Exmouth.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  /* ==========================================
     VARIABLES DE COLOR
     ========================================== */
  :root {
    --color-albero: #c0a50a;
    --color-albero-oscuro: #D4AF37;
    --color-marfil: #FFFFF0;
    --color-texto: #333333;
    --color-menu: #5a6d59;
  }
  
  /* ==========================================
     RESET Y ESTILOS BASE
     ========================================== */
  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-marfil);
    color: var(--color-texto);
    line-height: 1.6;
    padding-top: 80px;
  }
  
  /* ==========================================
     HEADER Y MENÚ
     ========================================== */
  .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-menu);
    padding: 10px 15px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .logo {
    font-family: 'Satisfy', cursive;
    font-size: 2rem;
    color: var(--color-albero);
    margin: 0;
    text-decoration: none;
    margin-bottom: 10px;
  }
  
  /* Estilos para el logo como imagen */
  .logo-img {
    height: 75px;
    width: auto;
    transition: transform 0.3s ease;
    filter: brightness(0) saturate(100%) invert(70%) sepia(76%) saturate(582%) hue-rotate(6deg) brightness(95%) contrast(92%);
  }
  
  .logo-img:hover {
    transform: scale(1.05);
    filter: brightness(0) saturate(100%) invert(80%) sepia(76%) saturate(582%) hue-rotate(6deg) brightness(100%) contrast(92%);
  }
  
  /* Botón hamburguesa para móvil */
  .menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-albero);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .main-menu {
    display: flex;
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .main-menu a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 400;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
  }
  
  .main-menu a:hover {
    color: var(--color-albero);
  }
  
  .main-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-albero);
    transition: width 0.3s;
  }
  
  .main-menu a:hover::after {
    width: 100%;
  }
  
  .main-menu a.active {
    color: var(--color-albero) !important;
    font-weight: bold !important;
  }
  
  .main-menu a.active::after {
    width: 100% !important;
    background-color: var(--color-albero) !important;
  }
  
  /* ==========================================
     HERO SECTION (para index.html)
     ========================================== */
  .hero-section {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('../images/cortijo-fondo.jpg') center/cover;
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
  }
  
  .hero-title {
    font-family: 'Exmouth', cursive;
    font-size: 5.5rem;
    margin: 0 0 2rem 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    color: var(--color-albero);
    letter-spacing: 1px;
    font-weight: 500;
  }
  
  /* ==========================================
     CONTADOR REGRESIVO
     ========================================== */
  .countdown {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 0 1rem;
  }
  
  .countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(145deg, rgba(90, 109, 89, 0.3), rgba(90, 109, 89, 0.15));
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    min-width: 110px;
    border: 1px solid rgba(192, 165, 10, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
  }
  
  .countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
      transparent, 
      rgba(192, 165, 10, 0.8), 
      transparent
    );
    border-radius: 15px 15px 0 0;
  }
  
  .countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(192, 165, 10, 0.6);
  }
  
  .countdown-number {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-albero);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6),
                 0 0 20px rgba(192, 165, 10, 0.3);
    font-family: 'Exmouth', cursive;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
  }
  
  .countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
  }
  
  .countdown-ended {
    font-size: 2.5rem;
    color: var(--color-albero);
    font-family: 'Exmouth', cursive;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    padding: 1rem 2rem;
    background: linear-gradient(145deg, rgba(90, 109, 89, 0.3), rgba(90, 109, 89, 0.15));
    backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 1px solid rgba(192, 165, 10, 0.4);
  }
  
  /* ==========================================
     SECCIÓN DE INFORMACIÓN DE BODA
     ========================================== */
  .wedding-info-section {
    background-color: var(--color-marfil);
    padding: 2rem 0;
    text-align: center;
  }
  
  .wedding-date {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--color-albero-oscuro);
  }
  
  /* ==========================================
     CONTENEDORES Y SECCIONES
     ========================================== */
  .main-content {
    margin-top: 80px;
    padding: 20px;
  }
  
  .section-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1.5rem;
  }
  
  .section-content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 2rem;
  }
  
  .section-title {
    font-family: 'Playfair Display', serif;
    color: var(--color-albero-oscuro);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color-albero);
    padding-bottom: 0.5rem;
  }
  
  /* ==========================================
     CARDS DE INFORMACIÓN
     ========================================== */
  .info-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  }
  
  .info-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--color-albero-oscuro);
    font-size: 1.8rem;
    margin-top: 0;
    border-bottom: 1px solid var(--color-albero);
    padding-bottom: 0.5rem;
  }
  
  /* ==========================================
     CARDS DE UBICACIÓN (donde-cuando.html)
     ========================================== */
  .location-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    box-sizing: border-box;
  }
  
  .location-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .location-icon {
    font-size: 2rem;
    margin-right: 1rem;
    color: var(--color-albero);
  }
  
  .location-title {
    font-family: 'Playfair Display', serif;
    color: var(--color-albero-oscuro);
    margin: 0;
  }
  
  .location-details {
    margin-bottom: 2rem;
  }
  
  .location-map {
    height: 300px;
    width: 100%;
    border-radius: 8px;
    margin-top: 1.5rem;
    border: 1px solid #eee;
  }
  
  .schedule-item {
    display: flex;
    margin-bottom: 1rem;
    align-items: center;
  }
  
  .schedule-icon {
    margin-right: 1rem;
    font-size: 1.5rem;
    color: var(--color-albero);
  }
  
  .schedule-text strong {
    color: var(--color-albero-oscuro);
  }
  
  /* ==========================================
     ESTILOS PARA LUNA-MIEL.HTML
     ========================================== */
  .honeymoon-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
  }
  
  .honeymoon-gallery img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s;
  }
  
  .honeymoon-gallery img:hover {
    transform: scale(1.03);
  }
  
  .destination-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid var(--color-albero);
  }
  
  .contribution-info {
    background-color: #fff8e6;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
  }
  
  .border-crossing {
    background-color: #e6f7ff;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
  }
  
  .important-note {
    color: #d35400;
    font-weight: bold;
  }
  
  /* ==========================================
     ESTILOS PARA AUTOBUSES.HTML
     ========================================== */
  .bus-schedule {
    margin: 20px 0;
  }
  
  .bus-route {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid var(--color-albero);
  }
  
  .bus-route h3 {
    color: var(--color-albero-oscuro);
    margin-top: 0;
  }
  
  .parking-info {
    list-style-type: none;
    padding-left: 0;
  }
  
  .parking-info li {
    padding: 10px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
    border-left: 3px solid var(--color-albero);
  }
  
  .note {
    font-style: italic;
    color: #666;
    margin-top: 20px;
  }
  
  /* ==========================================
     ESTILOS PARA RECOMENDACIONES.HTML
     ========================================== */
  .tips-list {
    list-style-type: none;
    padding-left: 0;
  }
  
  .tips-list li {
    padding: 15px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid var(--color-albero);
  }
  
  .hotel-card {
    background-color: #f0f8ff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid var(--color-albero-oscuro);
  }
  
  .hotel-card h3 {
    color: var(--color-albero-oscuro);
    margin-top: 0;
  }
  
  .hotel-details {
    margin-top: 15px;
  }
  
  .transport-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .transport-card h3 {
    color: var(--color-albero-oscuro);
    margin-top: 0;
  }
  
  .map-link {
    color: var(--color-albero);
    text-decoration: none;
    font-weight: bold;
  }
  
  .map-link:hover {
    text-decoration: underline;
  }
  
  /* ==========================================
     FOOTER
     ========================================== */
  .app-websites-footer {
    background-color: var(--color-menu);
    color: var(--color-albero);
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .websites-footer__wrapper {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .websites-footer__blockInfo {
    font-family: 'Satisfy', cursive;
    line-height: 2;
  }
  
  .websites-footer__blockInfo div:first-child {
    font-size: 2rem;
    color: var(--color-albero);
  }
  
  .websites-footer__blockInfo div:last-child {
    font-size: 1.2rem;
    color: var(--color-albero);
  }
  
  /* ==========================================
     BOTÓN CTA - CONFIRMACIÓN DE ASISTENCIA
     ========================================== */
  .cta-container {
    text-align: center;
    margin: 3rem auto;
    padding: 2rem 1rem;
    max-width: 800px;
  }
  
  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c0a50a, #D4AF37);
    color: white;
    padding: 1.3rem 3.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(192, 165, 10, 0.3);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
  }
  
  .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
  }
  
  .cta-button:hover::before {
    left: 100%;
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(192, 165, 10, 0.5);
    background: linear-gradient(135deg, #D4AF37, #c0a50a);
  }
  
  .cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(192, 165, 10, 0.4);
  }
  
  .cta-icon {
    font-size: 1.5rem;
    margin-right: 0.8rem;
    font-weight: bold;
  }
  
  /* ==========================================
     BOTONES GOOGLE MAPS
     ========================================== */
  .map-button-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    justify-content: center;
  }
  
  .map-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-albero);
    color: white;
    padding: 0.9rem 1.8rem;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(192, 165, 10, 0.3);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    flex: 1;
    min-width: 200px;
  }
  
  .map-button:hover {
    background: var(--color-albero-oscuro);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 165, 10, 0.4);
  }
  
  .map-button:active {
    transform: translateY(0);
  }
  
  .map-button-secondary {
    background: var(--color-menu);
  }
  
  .map-button-secondary:hover {
    background: #4a5a49;
  }
  
  .map-icon {
    font-size: 1.3rem;
    margin-right: 0.6rem;
  }
  
  /* ==========================================
     ANIMACIONES DE ENTRADA
     ========================================== */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Aplicar animaciones */
  .info-card {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
  }
  
  .info-card:nth-child(1) {
    animation-delay: 0.1s;
  }
  
  .info-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .info-card:nth-child(3) {
    animation-delay: 0.3s;
  }
  
  .info-card:nth-child(4) {
    animation-delay: 0.4s;
  }
  
  .countdown {
    animation: fadeInUp 0.8s ease-out 0.3s both;
  }
  
  .hero-title {
    animation: fadeInUp 1s ease-out 0.2s both;
  }
  
  .location-card {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
  }
  
  .location-card:nth-child(1) {
    animation-delay: 0.1s;
  }
  
  .location-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .location-card:nth-child(3) {
    animation-delay: 0.3s;
  }
  
  .cta-button {
    animation: fadeInUp 0.8s ease-out 0.5s both;
  }
  
  .section-title {
    animation: fadeInUp 0.6s ease-out 0.1s both;
  }
  
  /* ==========================================
     RESPONSIVE DESIGN
     ========================================== */
  
  /* Versión escritorio */
  @media (min-width: 768px) {
    .header-container {
      flex-direction: row;
      justify-content: center;
      padding: 5px 50px;
    }
  
    .logo {
      position: relative;
      left: -250px;
      margin-bottom: 0;
    }
  
    .main-menu {
      margin: 0 auto;
      flex-wrap: nowrap;
      gap: 25px;
    }
  
    .section-content {
      padding: 0 2rem;
    }
  }
  
  /* ==========================================
     MOBILE - TABLETS Y MÓVILES GRANDES
     ========================================== */
  @media (max-width: 768px) {
    /* MENÚ HAMBURGUESA */
    .menu-toggle {
      display: flex;
    }
  
    .main-menu {
      position: fixed;
      top: 70px;
      right: -100%;
      width: 70%;
      max-width: 300px;
      height: calc(100vh - 70px);
      background: rgba(90, 109, 89, 0.98);
      backdrop-filter: blur(10px);
      flex-direction: column;
      justify-content: flex-start;
      padding: 2rem 0;
      gap: 0;
      transition: right 0.3s ease;
      box-shadow: -5px 0 15px rgba(0,0,0,0.2);
      overflow-y: auto;
    }
  
    .main-menu.active {
      right: 0;
    }
  
    .main-menu li {
      width: 100%;
      text-align: center;
      padding: 0.5rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
  
    .main-menu a {
      display: block;
      padding: 1rem;
      font-size: 1rem;
    }
  
    /* LOGO */
    .logo-img {
      height: 70px;
    }
  
    /* HERO SECTION */
    .hero-section {
      height: 100vh;
      background-position: center 40%;
    }
  
    .hero-content {
      padding-top: 10vh;
    }
  
    .hero-title {
      font-size: 6rem !important;
      margin-bottom: 3rem;
    }
  
    /* CONTADOR EN MÓVIL - CENTRADO Y SIN CORTES */
    .countdown {
      display: flex;
      gap: 0.5rem;
      justify-content: center; /* Centrado */
      flex-wrap: nowrap;
      overflow-x: auto;
      overflow-y: hidden;
      margin: 2rem auto;
      padding: 0 0.5rem;
      max-width: 100%;
      /* SIN fondo contenedor - igual que desktop */
      background: none;
      backdrop-filter: none;
      border-radius: 0;
      border: none;
      box-shadow: none;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
  
    .countdown::-webkit-scrollbar {
      display: none;
    }
  
    .countdown-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      /* Fondo individual igual que desktop */
      background: linear-gradient(145deg, rgba(90, 109, 89, 0.3), rgba(90, 109, 89, 0.15));
      backdrop-filter: blur(20px);
      padding: 0.9rem 0.9rem;
      border-radius: 15px;
      min-width: 70px; /* Reducido para que quepan las 4 */
      max-width: 70px;
      flex-shrink: 0;
      border: 1px solid rgba(192, 165, 10, 0.4);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
                  inset 0 1px 0 rgba(255, 255, 255, 0.1);
      position: relative;
      transition: all 0.3s ease;
    }
  
    .countdown-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, 
        transparent, 
        rgba(192, 165, 10, 0.8), 
        transparent
      );
      border-radius: 15px 15px 0 0;
    }
  
    .countdown-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3),
                  inset 0 1px 0 rgba(255, 255, 255, 0.2);
      border-color: rgba(192, 165, 10, 0.6);
    }
  
    .countdown-number {
      font-size: 2rem;
      font-weight: 300;
      color: var(--color-albero);
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6),
                   0 0 20px rgba(192, 165, 10, 0.3);
      font-family: 'Exmouth', cursive;
      line-height: 1;
      margin-bottom: 0.5rem;
      letter-spacing: 1px;
    }
  
    .countdown-label {
      font-size: 0.55rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: rgba(255, 255, 255, 0.95);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
      font-weight: 500;
      font-family: 'Montserrat', sans-serif;
    }
  
    /* CTA BUTTON */
    .cta-button {
      padding: 1.1rem 2.5rem;
      font-size: 1rem;
      letter-spacing: 1.5px;
    }
  
    .cta-icon {
      font-size: 1.3rem;
      margin-right: 0.6rem;
    }
  
    /* MAP BUTTONS */
    /* MAP BUTTONS - AJUSTADOS AL MARCO */
    .map-button-container {
      flex-direction: column;
      gap: 0.8rem;
      padding: 0;
      margin-left: 0;
      margin-right: 0;
    }
  
    .map-button {
      width: 100%;
      min-width: auto;
      padding: 1rem 1.5rem;
      font-size: 0.95rem;
      box-sizing: border-box;
    }
  
    /* SECCIONES */
    .section-container {
      padding: 0 1rem;
    }
    
    .section-content {
      padding: 0 1rem;
    }
    
    .section-title {
      font-size: 1.8rem;
    }
    
    .honeymoon-gallery {
      grid-template-columns: 1fr;
    }
  
    /* Location cards con menos padding en móvil */
    .location-card {
      padding: 1.5rem 1rem;
      margin: 1.5rem auto;
    }
  }
  
  /* ==========================================
     MOBILE - MÓVILES PEQUEÑOS
     ========================================== */
  @media (max-width: 480px) {
    /* LOGO */
    .logo-img {
      height: 60px;
    }
  
    /* HERO */
    .hero-content {
      padding-top: 15vh;
    }
  
    .hero-title {
      font-size: 4.5rem !important;
    }
  
    /* CONTADOR EN MÓVIL PEQUEÑO */
    .countdown {
      gap: 0.4rem;
      padding: 0 0.4rem;
    }
  
    .countdown-item {
      padding: 0.8rem 0.8rem;
      min-width: 65px;
      max-width: 65px;
    }
  
    .countdown-number {
      font-size: 1.8rem;
    }
  
    .countdown-label {
      font-size: 0.52rem;
      letter-spacing: 1.2px;
    }
  
    /* CTA BUTTON */
    .cta-button {
      padding: 1rem 2rem;
      font-size: 0.95rem;
    }
  
    /* MAP BUTTONS */
    .map-button {
      padding: 0.9rem 1.2rem;
      font-size: 0.9rem;
      box-sizing: border-box;
    }
  
    .map-icon {
      font-size: 1.1rem;
      margin-right: 0.5rem;
    }
  }
  
  /* ==========================================
     MOBILE - PANTALLAS MUY PEQUEÑAS
     ========================================== */
  @media (max-width: 375px) {
    /* CONTADOR EN PANTALLAS MUY PEQUEÑAS */
    .countdown {
      gap: 0.3rem;
      padding: 0 0.3rem;
    }
  
    .countdown-item {
      padding: 0.7rem 0.7rem;
      min-width: 60px;
      max-width: 60px;
    }
  
    .countdown-number {
      font-size: 1.6rem;
    }
  
    .countdown-label {
      font-size: 0.5rem;
      letter-spacing: 1px;
    }
  }
  
  /* Desactivar animaciones si el usuario tiene "reducir movimiento" activado */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation: none !important;
      transition: none !important;
    }
  }
/* ==========================================
   ✨ MEJORAS NUEVAS - INTEGRADAS
   ========================================== */

/* ==========================================
   INFO-CARDS MEJORADAS - MÁS ELEGANTES
   ========================================== */
.info-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 2rem;
  margin-bottom: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  border-top: 4px solid var(--color-albero);
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(212, 175, 55, 0.8), 
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(192, 165, 10, 0.2);
  border-top-color: var(--color-albero-oscuro);
}

.info-card h2 {
  font-family: 'Exmouth', cursive;
  color: var(--color-albero-oscuro);
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  border-bottom: none;
  padding-bottom: 0;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-card h2::before {
  font-size: 2rem;
  color: var(--color-albero);
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.info-card:nth-child(1) h2::before {
  content: '⛪';
}

.info-card p {
  line-height: 1.8;
  color: #555;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.info-card p b {
  color: var(--color-albero-oscuro);
  font-weight: 600;
}

.info-card p i {
  color: var(--color-albero);
  font-style: normal;
  font-weight: 500;
  font-size: 1.1rem;
}

/* ==========================================
   SEPARADORES DECORATIVOS
   ========================================== */
.decorative-divider {
  text-align: center;
  margin: 3rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
}

.decorative-divider::before,
.decorative-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--color-albero),
    transparent
  );
}

.decorative-divider::before {
  margin-right: 1rem;
}

.decorative-divider::after {
  margin-left: 1rem;
}

.decorative-divider .icon {
  color: var(--color-albero);
  font-size: 1.5rem;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.1); }
  50% { transform: scale(1); }
}

.divider-heart .icon::before {
  content: '♡';
}

.divider-rings .icon::before {
  content: '💍';
}

.divider-flower .icon::before {
  content: '✿';
}

.divider-star .icon::before {
  content: '✦';
}

/* ==========================================
   BOTÓN WHATSAPP FLOTANTE
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-button::before {
  content: '💬';
  font-size: 2rem;
}

.whatsapp-button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: white;
  color: #333;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
}

.whatsapp-button:hover + .whatsapp-tooltip,
.whatsapp-tooltip:hover {
  opacity: 1;
  right: 75px;
}

/* ==========================================
   SECTION TITLE MEJORADO
   ========================================== */
.section-title {
  font-family: 'Exmouth', cursive;
  color: var(--color-albero-oscuro);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  border-bottom: none;
  padding-bottom: 0;
  position: relative;
  letter-spacing: 2px;
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-albero), transparent);
  margin: 1rem auto 0;
}

/* ==========================================
   WEDDING INFO SECTION MEJORADA
   ========================================== */
.wedding-info-section {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wedding-info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(192, 165, 10, 0.03) 35px, rgba(192, 165, 10, 0.03) 70px);
  pointer-events: none;
}

.wedding-info-section > div {
  position: relative;
  z-index: 1;
}

.wedding-info-section p:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 1rem;
  font-style: italic;
}

.wedding-date {
  font-family: 'Exmouth', cursive;
  font-size: 3rem;
  color: var(--color-albero-oscuro);
  margin: 1.5rem 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
  position: relative;
}

.wedding-date::before,
.wedding-date::after {
  content: '•';
  margin: 0 1rem;
  color: var(--color-albero);
  font-size: 0.8em;
}

.wedding-info-section p:last-child {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #555;
  margin-top: 1rem;
}

/* ==========================================
   MEJORAS RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
  .info-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .info-card h2 {
    font-size: 1.6rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .wedding-date {
    font-size: 2.2rem;
  }

  .decorative-divider {
    max-width: 300px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-button {
    width: 55px;
    height: 55px;
  }

  .whatsapp-button::before {
    font-size: 1.8rem;
  }

  .whatsapp-tooltip {
    display: none;
  }
}