/* fonts imports */
@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&display=swap');
/* Fonts */
@font-face {
 font-family: 'f_monserrat';
 src: url(/Fonts/Montserrat/static/Montserrat-Regular.ttf);
}
@font-face {
 font-family: 'f_noto';
 src: url(/Fonts/Noto_Sans/static/NotoSans-Regular.ttf);
}

@font-face {
 font-family: 'f_work';
 src: url(/Fonts/Work_Sans/static/WorkSans-Regular.ttf);
}
/* Variables */
:root {
 --color-primario: #5d2689;
 --color-secundario: #04B9A5;
 --color-tercero: #edf2f4;
 --color-negro: #555;
 --color-hover: #c77dff;
 --fuente-principal: "f_monserrat", sans-serif;
 --fuente-secundaria: "f_work", sans-serif;
 --tamaño-h1: 60px;
 --tamaño-h2: 40px;
 --tamaño-h3: 30px;
 --tamaño-h4: 20px;
}
/* Estilos generales */
body {
 font-family: var(--fuente-principal);
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}
.navbar {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 1rem 3rem;
 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.logo img {
 height: 150px;
 width: auto;
 vertical-align: middle;
}
.nav-links {
 display: flex;
 list-style: none;
 margin: 0;
 padding: 0;
 gap: 2rem;
}
.nav-links a {
 text-decoration: none;
 color: var(--color-negro);
 font-size: var(--tamaño-h4);
}
.nav-links a:hover {
 color: var(--color-hover);
}
#titulo-formulario {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 4rem 3rem;
  min-height: 60vh;
  background-color: var(--color-primario);
}
.content-title h1 {
  font-family: "Tangerine", cursive;
  font-size: var(--tamaño-h1);
  color: var(--color-tercero);
  font-weight: 100;
  margin-bottom: 1rem;
}
.content-title p {
  font-family: "Tangerine", cursive;
  font-size: var(--tamaño-h2);
  color: var(--color-tercero);
  font-weight: bold;
  line-height: 2rem;
  letter-spacing: 2px;
}
.content-form {
  color: var(--color-tercero);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 450px;
}
.content-form h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--color-tercero);
}
.form-field {
  margin-bottom: 1.2rem;
}
.form-field label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.8rem;
  color: var(--color-tercero);
}
.form-field input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--color-tercero);
  border-radius: 4px;
  box-sizing: border-box;
}
.form-field input::placeholder {
  color: #999;
  font-size: 0.9rem;
}
.double-field {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}
.double-field .form-field {
  flex: 1;
  margin-bottom: 0;
}
.required {
  color: red;
  margin-left: 4px;
}
.btn-enviar {
  width: 100%;
  padding: 1rem;
  background-color: var(--color-secundario);
  color: var(--color-tercero);
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn-enviar:hover {
  background-color: var(--color-hover);
}
.option-radio {
  display: block;
  align-items: center;
  cursor: pointer;
}
.option input[type="radio"] {
  display: none;
}
.option label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #007bff;
  border-radius: 50%;
  margin-right: 10px;
  background-color: #fff;
  transition: all 0.2s ease;
}
.option input[type="radio"]:checked + label::before {
  background-color: #007bff;
  box-shadow: inset 0 0 0 3px #fff;
}
.option label {
  margin-bottom: 0;
}
.cloud {
  margin-top: 20px;
}
#acerca-de-mi {
  padding: 4rem 2rem;
  background-color: var(--color-tercero);
}
.content-about-me {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.column-img {
  flex-basis: 35%;
  text-align: center;
}
.column-img img {
  max-width: 100%;
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.column-text {
  flex-basis: 65%;
}
.column-text h2 {
  font-size: var(--tamaño-h2);
  color: var(--color-negro);
}
.column-text p {
  font-size: var(--tamaño-h4);
  line-height: 1.6;
  color: var(--color-negro);
}
#services {
  padding: 4rem 2rem;
  background-color: var(--color-tercero);
}
.content-services {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.content-services h2 {
  font-size: var(--tamaño-h2);
  margin-bottom: 3rem;
  color: var(--color-negro);
}
.grid-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
}
.card-service {
  background-color: var(--color-secundario);
  padding: 3rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3 ease, box-shadow 0.3 ease;
}
.card-service:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.card-service i {
  font-size: var(--tamaño-h3);
  color: var(--color-negro);
  margin-bottom: 1.5rem;
}
.card-service h3 {
  font-size: var(--tamaño-h3);
  margin-bottom: 1rem;
  color: var(--color-negro);
  font-weight: bold;
}
.card-service p {
  font-size: var(--tamaño-h4);
  line-height: 1.6;
  color: var(--color-negro);
}
#contact {
  background: linear-gradient(100deg,rgba(93, 38, 137, 1) 20%, rgba(4, 185, 165, 1) 53%, rgba(93, 38, 137, 1) 80%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-bottom: 4rem;
  text-align: center;
}
.bg-subtitle-green {
  background-color: var(--color-tercero);
  color: var(--color-negro);
  padding: 1.5rem 2rem;
}
.bg-subtitle-green p {
  margin: 0;
  font-size: var(--tamaño-h4);
  font-weight: bold;
}
.subtitle-2-contact {
  padding: 4rem 2rem;
}
.subtitle-2-contact h2 {
  color: var(--color-tercero);
  font-weight: bold;
  font-size: var(--tamaño-h2);
  max-width: 800px;
  margin: 0 auto 2rem auto;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.btn-contact-whatsapp {
  display: inline-flex;
  background-color: transparent;
  align-items: center;
  gap: 0.8rem;
  border: 2px solid var(--color-tercero);
  border-radius: 1rem;
  color: var(--color-tercero);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-contact-whatsapp i {
  font-size: xx-large;
}
.btn-contact-whatsapp:hover {
  background-color: var(--color-tercero);
  color: var(--color-negro);
}
.maps-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.maps-content iframe {
  max-width: 100%;
  border-radius: 8px;
}

/* Footer */
/* estilos/estilos.css */

/* --- Estilos del Footer (Versión Final) --- */

footer {
    background-color: #222; /* Un fondo oscuro como en el ejemplo. */
    color: #ccc;          /* Texto de color gris claro. */
    padding-top: 4rem;
}

.footer-contenedor {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Crea 4 columnas de igual tamaño. */
    gap: 2rem;
    max-width: 1200px; /* Aumentamos el ancho para que quepan las 4 columnas. */
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-columna .logo-footer {
    width: 120px;
    margin-bottom: 1rem;
}

.footer-columna .descripcion-footer {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-columna h4 {
    display: flex; /* Usamos flexbox para alinear el ícono y el texto. */
    align-items: center;
    gap: 0.8rem; /* Espacio entre el ícono y el texto. */
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase; /* Pone el texto en mayúsculas. */
}

.footer-columna p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Estilo para los enlaces de teléfono y dirección */
.footer-link-info {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer-link-info:hover {
    color: #fff; /* Se aclara al pasar el cursor. */
}

.siguenos-seccion {
    margin-top: 1.5rem; /* Espacio para separar del horario. */
}

.siguenos-seccion h5 {
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.social-links-footer a {
    display: inline-block;
    color: #fff;
    background-color: #444;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.social-links-footer a:hover {
    background-color: #007BFF;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
    border-top: 1px solid #444;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* ---- Estilos para modal de cierre ---- */
#modal-overlay.modal-oculto {
  display: none;
}
#modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 34, 34, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
#modal-confirmacion {
  background-color: #fff;
  padding: 2rem 3rem;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}
#modal-confirmacion .fa-circle-check {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 1rem;
}
#modal-confirmacion h2 {
  color: var(--color-negro);
  margin-top: 0;
  margin-bottom: 1rem;
}
#modal-confirmacion p {
  color: var(--color-negro);
  margin-bottom: 2rem;
}
#btn-cerrar-modal {
  background-color: var(--color-negro);
  color: var(--color-tercero);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 2s ease;
}
#btn-cerrar-modal:hover {
  background-color: var(--color-secundario);
}