/* ===============================
   VARIABLES
=============================== */
:root {
  --primary-color: #6c63ff;
  --secondary-color: #4d44db;
  --dark-color: #2a2a2a;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
}

/* ===============================
   FONTS
=============================== */
@font-face {
  font-family: 'Pina Colada Creation';
  src: url('fonts/PinaColadaCreation.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: white;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Pina Colada Creation', normal;
  font-weight: 700;
}

.section-subtitle {
  color: var(--gray-color);
  margin-bottom: 3rem;
}

/* ===============================
   NAVBAR
=============================== */
.navbar {
  padding: 1.5rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  background-color: var(--light-color);
}
@media (max-width: 768px) {
  .navbar {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    background-color: #ffffff !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* sombra opcional para mayor visibilidad */
  }
}


.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.nav-link {
  font-weight: 500;
  margin: 0 0.5rem;
}

/* ===============================
   HERO SECTION
=============================== */
.hero-section {
  background-image: url('/assets/img/Aunsoloclick.png');
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
}
a:visited {
  color: white;
}
.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.hero-section .lead {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: var(--dark-color);
}
.lead{
  font-size: 2rem;
  font-weight: bold;
}

.site-footer {
  background-color: var(--light-color);
  color: #212529;
  padding: 4rem 0 2rem;
  line-height: 1.6;
}

/* Contenedor principal */
.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Títulos */
.site-footer h3 {
  color: var(--primary-color);
  margin-bottom: 1.8rem;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.site-footer h4 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

/* Texto y párrafos */
.site-footer p,
.site-footer li,
.site-footer a {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.site-footer ul {
  list-style: none;
  padding-left: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 2rem;
}

.site-footer ul li {
  margin-bottom: 1rem;
}

/* Social links */
.social-links {
  margin-top: 1.5rem;
}

.social-links a {
  display: inline-block;
  margin-right: 1.25rem;
  color: var(--primary-color);
  font-size: 1.5rem;
  transition: all 0.3s;
  margin-bottom: 1rem;
}

.social-links a:hover {
  color: var(--secondary-color);
  transform: translateY(-3px);
}

/* Copyright */
.copyright {
  color: var(--gray-color);
  font-size: 0.9rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

/* Estilo para widgets de lista creados con Gutenberg */
.site-footer .wp-block-list {
  padding: 0;
  margin: 0;
}

/* Responsive */
@media (min-width: 992px) {
  .site-footer .row > div {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 0 1.5rem;
    text-align: center;
  }

  .site-footer ul li {
    padding-left: 0;
  }

  .social-links {
    justify-content: center;
  }
}
.wp-block-social-links .wp-block-social-link.wp-social-link {
  display: inline-block;
  margin: 0;
  padding: 0;
  height: 26px;
}

/* ===============================
   BUTTONS
=============================== */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 1.75rem;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

/* ===============================
   RESPONSIVE HERO & NAVBAR
=============================== */
@media (max-width: 768px) {
  .hero-section {
    min-height: 60vh;
    padding: 4rem 0;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }
}

/* Estilos específicos para la página de contacto */
.contact-hero {
  background-color: rgb(195, 195, 230);
  background-size: cover;
  background-position: center;
  color: white;
  padding: 8rem 0;
  text-align: center;
}

.contact-form {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 3rem;
  margin-top: -100px;
  position: relative;
  z-index: 2;
}

.form-control {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  margin-bottom: 1.5rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.25);
}

.contact-info-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.contact-info-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  height: 400px;
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}