/* global.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-padding {
  padding: var(--spacing-section) 0;
}

/* Responsive Grid Utility */
.responsive-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .responsive-grid-2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Button Component */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--primary-color);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gradient-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(201, 150, 26, 0.4);
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--text-light) !important;
}

.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--text-light);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--text-light);
  color: var(--primary-color);
  border-color: var(--text-light);
}

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

.section-subtitle {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-dark);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* Verde oficial WhatsApp */
    color: #FFF;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}
.floating-wa:hover {
    transform: scale(1.1);
    color: white;
}
@media (max-width: 768px) {
    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* Tip Banners */
.tip-banner {
    background: var(--gradient-gold);
    color: var(--primary-color);
    padding: 3.5rem 0;
    text-align: center;
    font-weight: 500;
    border-top: 5px solid var(--primary-color);
    border-bottom: 5px solid var(--primary-color);
}
.tip-banner h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* --- Animaciones Suaves --- */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Swiper Carousel Ajustes */
.swiper {
    width: 100%;
    padding-bottom: 3rem !important; /* Espacio para bullets */
}
.swiper-slide {
    height: auto; /* Para que todas las tarjetas midan igual */
}
.swiper-pagination-bullet {
    background: var(--gold-dark) !important;
}
.image-rounded-shadow {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    width: 100%;
}
