/* created by chatgpt.com */
body{
    font-family:Arial;
    margin:0;
    background:#f4f7fb;
    color:#333;
}

header{
    display:flex;
    justify-content:space-between;
    padding:20px;
    background:#1e88e5;
    color:white;
}

nav a{
    color:white;
    margin-left:20px;
    text-decoration:none;
}

.hero{
    background: url(https://nomasdrogas.cl/img/Hero.jpg) center/cover; 
    height:300px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:grey;
    text-align:center;
}

.btn{
    background: #1e88e5;
    padding:15px 25px;
    border-radius:5px;
    color:white;
    text-decoration:none;
    margin:10px;
    display:inline-block;
}

.whatsapp{
    background:#25D366;
}

.servicios{
    padding:60px;
    text-align:center;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.card{
    background:white;
    padding:30px;
    border-radius:8px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
}

.cta{
    background:#1e88e5;
    color:white;
    padding:60px;
    text-align:center;
}

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:20px;
}

.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:white;
    font-size:25px;
    padding:15px;
    border-radius:50%;
    text-decoration:none;
}

.hero-tratamientos{
    background:#1e88e5;
    color:white;
    padding:80px;
    text-align:center;
}

.hero-tratamientos1{
    background: url(https://nomasdrogas.cl/img/terapia.jpg) center/cover; 
    height:200px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:white;
    text-align:center;
}

.tratamientos{
    padding:60px;
}

.programa{
    background:#f2f6fb;
    padding:60px;
}

.hero-ingreso{
    background:#1e88e5;
    color:white;
    padding:80px;
    text-align:center;
}

.hero-ingreso1{
    background: url(https://nomasdrogas.cl/img/psicologia_adulto.jpg) center/cover; 
    height:200px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:white;
    text-align:center;
}

.hero-contacto1{
    background: url(https://nomasdrogas.cl/img/leyendocarta.jpg) center/cover; 
    height:200px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:white;
    text-align:center;
}
.proceso{
    padding:60px;
}

.requisitos{
    background:#f4f7fb;
    padding:60px;
}

.duracion{
    padding:60px;
    text-align:center;
}

.header-landing{
    display:flex;
    justify-content:space-between;
    padding:20px;
    background:#1e88e5;
    color:white;
}

.hero-landing{
    background:url('img/hero.jpg') center/cover;
    height:500px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.btn-llamar{
    background:#ff5252;
    padding:10px 20px;
    color:white;
    text-decoration:none;
    border-radius:5px;
}

.problema{
    padding:60px;
    text-align:center;
}

.solucion{
    background:#f5f7fb;
    padding:60px;
}

.testimonios{
    padding:60px;
    background:white;
}

.formulario{
    padding:60px;
    text-align:center;
}

.formulario input,
.formulario textarea{
    width:90%;
    max-width:400px;
    padding:12px;
    margin:10px;
}

.cta-final{
    background:#1e88e5;
    color:white;
    padding:60px;
    text-align:center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}
.gallery img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    height: 200px;
    transition: 0.3s;
}
.gallery img:hover {
    transform: scale(1.05);
}