@font-face {
    font-family: 'Silently';
    src: url('fonts/Silently.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Coves';
    src: url('fonts/Coves.otf') format('opentype'); /* OTF usa 'opentype' */
    font-weight: normal;
    font-style: normal;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Estilos base con mejoras visuales */
body {
    font-family: 'Coves', sans-serif;
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    text-align: center;
    overflow-x: hidden;
    background: #f9f9f9 url('images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  animation: fadeSlideIn 1.6s ease-out forwards;
  opacity: 0;
}



.hero-logo .brand-name {
    font-family: 'Silently', serif; /* Aplicamos la fuente personalizada */
    font-size: 5rem;  /* Ajustar tamaño */
    font-weight: bold;
    text-align: center;
    color: #333; /* Color más elegante */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px; /* Espaciado entre letras para un toque profesional */
}




.hero {
    padding: 40px 0 20px; /* Más margen arriba/abajo */
    background: rgba(221, 238, 255, 0.2); /* Color más sutil */
    text-align: center;
}


.therapy-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 50px 10px;
}

.therapy-box {
    background: #eee;
    padding: 25px;
    width: 300px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.therapy-box:hover {
    transform: scale(1.05);
}

.about, .help, .testimonials, .schedule, .contact {
    padding: 50px 20px;
    background: white;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
}

.read-more {
  display: inline-block;
  background: #444;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.read-more:hover {
  background: #0077cc;
}


.schedule {
    background: #f0f0f0;
    padding: 20px;
}

.contact {
    background: #e8e8e8;
    padding: 30px;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.contact button {
    background: #444;
    color: white;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1em;
    transition: background 0.3s;
}

.contact button:hover {
    background: #0077cc;
}

footer {
	font-family: Arial, sans-serif;
    font-size: 1rem;
    padding: 20px;
    background: #222;
    color: white;
    margin-top: 40px;
    text-align: center;
    font-size: 0.9em;
}

#footer a {
  color: white;              /* Fuerza el color blanco */
  text-decoration: underline;
  font-weight: normal;
}

#footer a:hover {
  color: #ccc;               /* Un gris clarito al pasar el ratón */
}


/* ===== MENÚ HEADER Y RESPONSIVE ===== */
header {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.main-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.main-menu li {
    margin: 0;
}

.main-menu a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition: color 0.3s;
}

.main-menu a:hover {
    color: #0077cc;
}

/* ===== Responsive - Móvil ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-menu {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        padding: 10px 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        max-height: 80vh;
        overflow-y: auto;
        z-index: 999;
    }

    .main-menu.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-menu li {
        margin: 4px 0;
        padding: 0;
    }

    .main-menu a {
        font-size: 1rem;
        padding: 4px 10px;
        display: block;
    }
	
	footer {
	font-family: Arial, sans-serif;
    font-size: 1rem;
    padding: 20px;
    background: #222;
    color: white;
    margin-top: 40px;
    text-align: center;
    font-size: 0.9em;
	}

/* Opcional: asegurar que en móviles no se vea azul o subrayado raro */
	@media (max-width: 768px) {
	#footer a {
    color: white !important;
    text-decoration: underline;
  }

}

.landing-message {
  max-width: 600px;
  margin: 40px auto 30px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.landing-title {
  font-family: 'Coves', sans-serif;
  font-size: 3rem;
  color: #333;
  margin-bottom: 10px;
}

.landing-subtitle {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

.landing-cta {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1.1rem;
  background: #0077cc;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.landing-cta:hover {
  background: #005999;
}

@media (max-width: 768px) {
  .landing-message {
    padding: 20px;
    margin: 40px 20px;
  }

  .landing-title {
    font-size: 2rem;
  }

  .landing-subtitle {
    font-size: 1rem;
  }
}

/*estilo servicios.html*/

/* ==== ESTRUCTURA PARA PEGAR FOOTER AL FONDO ==== */
