
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: var(--font-body);
	font-size: 18px;
	color: var(--gris-oscuro);
	padding-top: 130px;
	background: white;
}
h1, h2, h3, h4 {
	font-family: var(--font-headings);
	font-weight: 700;
	color: var(--azul);
	margin: 0;
}
h1 { font-size: 2.5rem; }
h2 {
	font-size: 1.75rem;
    text-align: center;
    margin-bottom: 30px;
    color: #426180;
}
h3 { font-size: 1.25rem;
color: #426180; }
h4 { font-size: 1rem; }

a {
	color: var(--naranja);
	text-decoration: none;
}

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

section {
	padding: 4rem 0;
}
section:nth-of-type(odd) {
	background: var(--seccion1);
}
section:nth-of-type(even) {
	background: var(--seccion2);
}

/* Animaciones básicas */
.fade-in { opacity:0; transform:translateY(20px); transition:all 0.6s ease; }
.fade-in.appear { opacity:1; transform:none; }
.slide-up { opacity:0; transform:translateY(50px); transition:all 0.6s ease; }
.slide-up.appear { opacity:1; transform:none; }
.zoom-in { opacity:0; transform:scale(0.8); transition:all 0.6s ease; }
.zoom-in.appear { opacity:1; transform:scale(1); }

/* Hero base */
.hero {
	position: relative;
	padding: 0;
}
.hero h1 {
	font-size: 1.5rem;
}
.hero .slide {
	width: 100%;
	aspect-ratio: 7/5;
	background-size: cover;
	background-position: center;
}
.slide-text.container {
	background: #00000090;
	padding: 30px;
	text-align: center;
	border-radius: radio;
}
.slide-text.container h1 {
	color: white;
}
.slick-initialized .slick-slide {
	display: flex;
}
.slick-dotted.slick-slider {
	margin-bottom: 0;
}
.slick-dots {
	bottom: 0;
}
/* Botón WhatsApp flotante */
.whatsapp-float {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	background-color: #25D366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	animation: pulse 2s infinite;
}
.whatsapp-float img {
	width: 60%;
	height: 60%;
}
@keyframes pulse {
	0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
	70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(37,211,102,0); }
	100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.contenido img {
	max-width: 100%;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 0 auto;
  text-align: left;
}

.contacto-col h3 {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contacto-col a {
  color: #333;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 6px;
  transition: color .3s;
}

.contacto-col a:hover {
  color: var(--naranja, #F75810);
}

.contacto-col i {
  color: var(--naranja, #F75810);
  min-width: 18px;
  text-align: center;
}

/* Desktop: 3 columnas */
@media (min-width: 768px) {
  .contacto-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

footer {
	padding: 20px;
	background: black;
	color: white;
}