*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;
}

body{
background:#fffaf5;
color:#333;
line-height:1.6;
}

/* HERO */

.hero{
background:linear-gradient(
135deg,
#FFB056,
#ff9f43
);
color:white;
padding:70px 20px;
}

.hero-content{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:center;
gap:50px;
flex-wrap:wrap;
}

.foto-doctora{
width:260px;
height:260px;
object-fit:cover;
border-radius:50%;
border:6px solid white;
box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.hero h1{
font-size:42px;
margin-bottom:10px;
}

.especialidad{
font-size:24px;
margin-bottom:10px;
}

.rating{
font-size:18px;
margin-bottom:15px;
}

/* BOTONES */

.btn{
display:inline-block;
margin-top:20px;
background:#25D366;
color:white;
padding:15px 30px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
transition:.3s;
}

.btn:hover{
transform:translateY(-3px);
}

/* SECCIONES */

section{
max-width:1100px;
margin:auto;
padding:50px 20px;
}

h2{
color:#FFB056;
margin-bottom:25px;
font-size:32px;
}

/* SERVICIOS */

.servicios{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.servicio{
background:white;
padding:25px;
border-radius:20px;
box-shadow:0 4px 15px rgba(0,0,0,.08);
transition:.3s;
}

.servicio:hover{
transform:translateY(-5px);
}

/* ACORDEON */

.acordeon{
margin-top:20px;
}

.acordeon-btn{

width:100%;
background:#FFB056;
color:white;
padding:18px;
border:none;
border-radius:12px;
cursor:pointer;
font-size:18px;
text-align:left;
margin-top:10px;
transition:.3s;

}

.acordeon-btn:hover{

background:#e66d00;

}

.acordeon-contenido{

display:none;
background:white;
padding:20px;
border-radius:0 0 12px 12px;
box-shadow:0 4px 10px rgba(0,0,0,.08);

}

.acordeon-contenido ul{

padding-left:20px;

}

.acordeon-contenido li{

margin-bottom:10px;

}

/* FORMULARIO */

form{

display:flex;
flex-direction:column;
gap:15px;
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 8px 25px rgba(0,0,0,.08);

}

input,
textarea,
select{

padding:14px;
border:1px solid #ddd;
border-radius:12px;
font-size:16px;
outline:none;
transition:.3s;

}

input:focus,
textarea:focus,
select:focus{

border-color:#FFB056;
box-shadow:0 0 8px rgba(255,122,0,.25);

}

button{

background:#FFB056;
color:white;
border:none;
padding:15px;
border-radius:12px;
cursor:pointer;
font-size:17px;
font-weight:bold;
transition:.3s;

}

button:hover{

background:#e66d00;

}

/* HORARIOS */

ul{
padding-left:25px;
}

ul li{
margin-bottom:10px;
}

/* FOOTER */

footer{

background:#FFB056;
color:white;
text-align:center;
padding:30px;
margin-top:40px;

}

footer p{
margin-bottom:8px;
}

/* WHATSAPP */

.whatsapp{

position:fixed;
bottom:20px;
right:20px;
width:65px;
height:65px;
background:#25D366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:32px;
text-decoration:none;
color:white;
box-shadow:0 5px 15px rgba(0,0,0,.3);
z-index:999;

}

/* RESPONSIVE */

@media(max-width:768px){

.hero{
padding:50px 15px;
}

.hero-content{
flex-direction:column;
text-align:center;
}

.foto-doctora{
width:180px;
height:180px;
}

.hero h1{
font-size:28px;
}

.especialidad{
font-size:18px;
}

.rating{
font-size:16px;
}

h2{
font-size:26px;
}

section{
padding:30px 15px;
}

.acordeon-btn{
font-size:16px;
padding:15px;
}

.btn{
width:100%;
text-align:center;
}

form{
padding:20px;
}

}