:root {
  --primary-color: #1eb857;
  --primary-hover: #1eb857;
  --whatsapp-color: #25d366;
  --whatsapp-hover: #1eb857;
  --bg-overlay: rgba(0, 0, 0, 0.35);
  --card-bg: rgba(247, 247, 247, 0.90);
  --text-main: #1e293b;
  --text-muted: #64748b;
  --radius: 16px;
  --transition: all 0.3s ease;
}

@font-face {
  font-family: 'cheddarJack';
  src: url('../fonts/cheddarJack.ttf') format('truetype');
}

@font-face {
  font-family: 'nunitoRegular';
  src: url('../fonts/Nunito-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'mocha';
  src: url('../fonts/mocha.otf') format('opentype');
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-main);
  background-color: #0a192f;
}
.frase {
	font-family: 'cheddarJack';
	color: #257205;
	font-size: 45px;
	margin-bottom: 40px;
	
}

.nunito-font {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}
.anton-regular {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.montserrat-regular {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}


/* Hero & Background */
.hero-container {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: url("../images/banner.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: var(--bg-overlay);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* Card Principal */
.card {
  width: 100%;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 40px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
  transition: var(--transition);
}

.card-header {
  margin-bottom: 25px;
}

.logo {
  max-width: 350px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

/* Badge de Ubicación */
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #f1f5f9;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 25px;
}

.location-badge i {
  color: var(--primary-color);
}

/* Botones de Contacto */
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-btn i {
  font-size: 1.25rem;
}

/* Estilos específicos de botones */
.contact-btn.whatsapp {
  background-color: var(--whatsapp-color);
  color: #ffffff;
}

.contact-btn.whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.contact-btn.email {
  background-color: #3A821C;
  color: #ffffff;
}

.contact-btn.email:hover {
  background-color: #257205;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 105, 202, 0.3);
}

/* Footer */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  text-align: center;
}

.footer a {
  color: #ffffff;
  text-decoration: underline;
  transition: var(--transition);
}

.footer a:hover {
  opacity: 0.8;
}

/* Adaptación Mobile */
@media (max-width: 480px) {
  .card {
    padding: 30px 20px;
  }
  
  .logo {
    max-width: 200px;
  }
  
  .contact-btn {
    font-size: 0.9rem;
    padding: 12px 15px;
  }
}