/* --- RESET BÁSICO --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Espacio libre arriba para que la cabecera fija (sticky header) no tape el inicio de las secciones */
  scroll-padding-top: 0px; 
}

body {
  color: #1a1a1a;
  background-color: #DBDBDB;
}

/* --- CONTENEDOR PRINCIPAL (MAX 1140px) --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- ESTILOS DEL HEADER --- */
.site-header {
  width: 100%;
  background-color: #DBDBDB;
  border-bottom: 0px solid #eaeaea;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Base para cada columna (distribución equitativa) */
.header-col {
  flex: 1;
  display: flex;
  align-items: center;
}

/* --- COLUMNA 1: MENÚ --- */
.nav-col {
  justify-content: flex-start;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 24px;
}

/* --- NAVEGACIÓN Y DIVISORES --- */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0; /* Controlamos el espacio a través de los ítems */
}

.nav-item {
  display: flex;
  align-items: center;
}

/* División con la barra vertical "|" excepto en el último elemento */
.nav-item:not(:last-child)::after {
  content: "|";
  margin: 0 12px;
  color: #456570;
  font-weight: 100;
  font-size: 14px;
  user-select: none; /* Evita que el separador sea seleccionado al copiar texto */
}

.nav-link {
  text-decoration: none;
  color: #456570;
  font-size: 14px;
  font-weight: 100;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
  font-family: 'Satoshi Variable';
}

.nav-link:hover {
  color: #456570; /* Tono vino */
}

/* Línea de subrayado animada */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #456570;
  transition: width 0.3s ease;
}

/* Activación de subrayado */
.nav-link.active {
  color: #456570;
  font-weight: 600;
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

/* --- COLUMNA 2: LOGO --- */
.logo-col {
  justify-content: center;
  text-align: center;
}

.logo{
	width:220px;
}

/* --- COLUMNA 3: REDES SOCIALES --- */
.social-col {
  justify-content: flex-end;
  gap: 16px;
}

.social-col a {
  color: #786587;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.social-col a:hover {
  color: #786587;
  transform: translateY(-2px);
}

/* --- SECCIÓN HERO (SÓLO IMAGEN) --- */
.hero-section {
  width: 100%;
  padding: 30px 0;
}

.hero-container {
  display: flex;
  justify-content: center;
}

.hero-banner-img {
  width: 100%;
  max-width: 1140px; /* Ancho máximo del contenedor */
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 2px; /* Suavizado sutil de bordes (opcional) */
}


/* --- SECCIÓN ACERCA DE MÍ --- */
.about-section {
  padding-top: 150px;
  width: 100%;
}

/* Fila del Título */
.about-heading-wrapper {
  margin-bottom: 25px;
}

.about-heading {
  font-family: 'KokoroTrialBold', sans-serif;
  color: #456570;
  font-size: 46px;
  text-transform: uppercase;
  margin: 0;
}

/* Fila de Contenido (Imagen + Texto) */
.about-content-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start; /* Alinea el fondo de la imagen con el fondo del texto */
}

/* Proporciones de columnas */
.about-col.left-col {
  flex: 0 0 58%;
  max-width: 58%;
}

.about-col.right-col {
  flex: 0 0 42%;
  max-width: 42%;
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Textos de la derecha */
.about-header-text {
  margin-bottom: 15px;
}

.about-name {
  font-family: 'KokoroTrialBold', sans-serif;
  color: #456570;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

.about-subtitle {
  font-family: 'Satoshi Variable', sans-serif;
  color: #786587;
  font-size: 26px;
  display: block;
}

.about-bio p {
  font-family: 'Satoshi Variable', sans-serif;
  color: #334952;
  font-size: 14px;
  margin-bottom: 12px;
}

.about-bio p:last-child {
  margin-bottom: 0;
}

/* Pleca Full Width */
.pleca-divider {
  width: 100%;
  margin-top: 50px;
  overflow: hidden;
  line-height: 0;
}

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



/* --- SECCIÓN SERVICIOS --- */
.services-section {
  padding-top: 150px;
  width: 100%;
}

.services-container {
  display: flex;
  gap: 50px;
  align-items: flex-start; /* Alinea el título y la imagen al inicio superior */
}

/* Distribución de columnas (Texto izquierda / Imagen derecha) */
.services-col.left-col {
  flex: 0 0 52%;
  max-width: 52%;
}

.services-col.right-col {
  flex: 0 0 48%;
  max-width: 48%;
}

/* Título de Servicios */
.services-title {
  font-family: 'KokoroTrialBold', sans-serif;
  color: #456570;
  font-size: 42px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 42px;
  line-height: 1.1;
}

/* Lista de Viñetas Personalizada */
.services-list {
  list-style: none; /* Quitamos la viñeta predeterminada */
  padding-left: 0;
  margin: 0;
}

.services-list li {
  font-family: 'Satoshi Variable', sans-serif;
  color: #334952;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px; /* Espacio para el viñeta personalizada */
}

.services-list li:last-child {
  margin-bottom: 0;
}

/* Viñeta coloreada (#786587) */
.services-list li::before {
  content: "•";
  color: #786587;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -1px;
  line-height: 1;
}

/* Imagen de la derecha */
.services-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* --- BOTÓN CONTACTAME EN SERVICIOS --- */
.services-cta-wrapper {
  margin-top: 48px;
}

.btn-contactame {
  font-family: 'Satoshi Variable';
  color: #456570;
  font-size: 20px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

/* Línea de subrayado morada (#786587) */
.btn-contactame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%; /* Línea visible por defecto */
  height: 2px;
  background-color: #786587; 
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Efecto hover suave */
.btn-contactame:hover {
  color: #786587; /* Cambia a morado al pasar el cursor (opcional) */
}

.btn-contactame:hover::after {
  transform: scaleX(1.05); /* Ligera expansión al pasar el mouse */
}


/* --- SECCIÓN CONTACTO --- */
.contact-section {
  padding-top: 150px;
  width: 100%;
}

/* Título de la Sección */
.contact-title {
  font-family: 'KokoroTrialBold', sans-serif;
  color: #456570;
  font-size: 42px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 35px;
  line-height: 1.1;
}

/* --- FORMULARIO EN DOS COLUMNAS --- */
.contact-form {
  width: 100%;
  margin-bottom: 40px;
}

.form-columns-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.form-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

/* Placeholders en color Morado */
.form-group input::placeholder,
.form-group textarea::placeholder {
  font-family: 'Satoshi Variable', sans-serif;
  color: #786587; 
  font-size: 16px;
  opacity: 1;
}

/* Estilo de los inputs y textarea */
.form-group input,
.form-group textarea {
  font-family: 'Satoshi Variable', sans-serif;
  color: #786587;
  font-size: 16px;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid #456570;
  padding: 8px 0;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: #456570; /* Línea cambia a morado al enfocar */
}

.form-group textarea {
  min-height: 106px; /* Ajusta este valor en píxeles según la altura que quieras */
}

.form-group textarea {
  resize: vertical;
}

/* --- BOTÓN ENVIAR --- */
.form-submit-wrapper {
  margin-top: 5px;
  display: flex;
  justify-content: flex-end; /* Alinea el botón a la derecha */
}

.btn-enviar {
  font-family: 'Satoshi Variable', sans-serif;
  color: #456570;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.btn-enviar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #786587; /* Subrayado morado */
  transition: transform 0.3s ease;
}


.btn-enviar:hover::after {
  transform: scaleX(1.05);
}

/* --- DATOS DE CONTACTO DIRECTO (CENTRADOS) --- */
.contact-direct-info {
  margin-top: 25px;
  text-align: center; /* Centra el texto 'Comunícate conmigo' */
}

.contact-label {
  font-family: 'Satoshi Variable', sans-serif;
  color: #786587; /* Morado */
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.contact-methods-grid {
  display: flex;
  align-items: center;
  justify-content: center; /* Centra los dos enlaces horizontalmente */
  gap: 40px; /* Separación horizontal entre WhatsApp y Correo */
}

.contact-link {
  font-family: 'Satoshi Variable', sans-serif;
  color: #456570; /* Verde corporativo */
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s ease;
}

.contact-link:hover {
  opacity: 0.8;
}

.whatsapp-icon {
  color: #786587;
  font-size: 1.2rem;
}
















/* --- RESPONSIVIDAD (PANTALLAS PEQUEÑAS) --- */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .header-col {
    justify-content: center;
    width: 100%;
  }

  .nav-menu {
    gap: 16px;
  }
  
  .logo-title {
    font-size: 1.3rem;
  }

  .hero-section {
    padding: 15px 0;
  }

 .about-content-grid {
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
  }

  .about-col.left-col,
  .about-col.right-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .services-container {
    flex-direction: column;
    gap: 30px;
  }

  .services-col.left-col,
  .services-col.right-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

 .form-columns-wrapper {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  /* Asegura que cada columna ocupe el 100% del ancho disponible */
  .form-col {
    flex: none;
    width: 100%;
  }

  /* Asegura que las entradas y área de texto abarquen todo el espacio horizontal */
  .form-group input,
  .form-group textarea {
    width: 100%;
    box-sizing: border-block-box;
  }

  /* Alinea el botón al 100% o mantenlo alineado a la derecha en móviles */
  .form-submit-wrapper {
    width: 100%;
    justify-content: flex-end;
  }

.contact-methods-grid {
    flex-direction: column;
    align-items: center; /* Mantiene la alineación centrada en móviles */
    gap: 12px;
  }

  html {
  scroll-padding-top: 80px; 
}





}







@font-face {
    font-family: 'KokoroTrial';
    src: url('../fonts/KokoroTrial-Italic.eot');
    src: url('../fonts/KokoroTrial-Italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/KokoroTrial-Italic.woff2') format('woff2'),
        url('../fonts/KokoroTrial-Italic.woff') format('woff'),
        url('../fonts/KokoroTrial-Italic.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'KokoroTrialBold';
    src: url('../fonts/KokoroTrial-Bold.eot');
    src: url('../fonts/KokoroTrial-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/KokoroTrial-Bold.woff2') format('woff2'),
        url('../fonts/KokoroTrial-Bold.woff') format('woff'),
        url('../fonts/KokoroTrial-Bold.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi Variable';
    src: url('../fonts/Satoshi-Regular.eot');
    src: url('../fonts/Satoshi-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Satoshi-Regular.woff2') format('woff2'),
        url('../fonts/Satoshi-Regular.woff') format('woff'),
        url('../fonts/Satoshi-Regular.ttf') format('truetype'),
        url('../fonts/Satoshi-Regular.svg#Satoshi-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi Variable Bold';
    src: url('../fonts/SatoshiVariable-Bold.eot');
    src: url('../fonts/SatoshiVariable-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SatoshiVariable-Bold.woff2') format('woff2'),
        url('../fonts/SatoshiVariable-Bold.woff') format('woff'),
        url('../fonts/SatoshiVariable-Bold.ttf') format('truetype'),
        url('../fonts/SatoshiVariable-Bold.svg#SatoshiVariable-Bold') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
