:root{
--primary:#e84393;      /* rosado */
--secondary:#f06ca8;    /* rosado claro */
--accent:#481f61;       /* morado elegante */
--light:#fff0f6;
}    

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#fff;
color:#333;
}

/* NAVBAR */

nav{
position:fixed;
top:0;
width:100%;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
z-index:1000;
backdrop-filter:blur(10px);
background:rgba(255,255,255,0.8);
}

nav .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 30px;
max-width:1200px;
margin:auto;
}

.logo{
font-weight:bold;
font-size:20px;
color:#e84393;
}

nav ul{
display:flex;
list-style:none;
gap:20px;
}

nav a{
text-decoration:none;
color:#333;
font-weight:500;
}

/* HERO */

header{
margin-top:70px;
background:linear-gradient(135deg,#ffb6d5,#f06ca8);
color:white;
padding:120px 20px;
text-align:center;
}

header h1{
font-size:3rem;
margin-bottom:10px;
}

header p{
font-size:1.2rem;
margin-top:10px;
}

.btn{
display:inline-block;
margin-top:25px;
background:white;
color:#e84393;
padding:14px 30px;
border-radius:40px;
font-weight:bold;
text-decoration:none;
transition:.3s;
}

.btn:hover{
background:#333;
color:white;
}

/* SECTIONS */

section{
padding:80px 20px;
max-width:1200px;
margin:auto;
}

/* SERVICES */

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
margin-top:40px;
}

.card{
background:#fff0f6;
padding:30px;
border-radius:15px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.4s;
}

.card:hover{
transform:translateY(-10px);
}

.card h3{
color:#e84393;
margin-bottom:10px;
}

/* AREA */

.area{
background:#ffe6f2;
border-radius:15px;
text-align:center;
padding:50px;
}

/* CONTACT */

form{
display:grid;
gap:15px;
max-width:600px;
margin:auto;
margin-top:30px;
}

input,textarea{
padding:14px;
border-radius:8px;
border:1px solid #ddd;
font-size:16px;
}

textarea{
min-height:120px;
}

button{
background:#e84393;
color:white;
border:none;
padding:14px;
border-radius:30px;
font-size:16px;
cursor:pointer;
transition:.3s;
}

button:hover{
background:#c21872;
}

/* MAP */

.map{
margin-top:40px;
border-radius:15px;
overflow:hidden;
}

/* FLOAT BUTTONS */

.call-float{
position:fixed;
bottom:25px;
right:25px;
background:#e84393;
color:white;
padding:16px 22px;
border-radius:50px;
font-weight:bold;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
z-index:999;
}

.whatsapp{
position:fixed;
bottom:90px;
right:25px;
background:#25D366;
color:white;
padding:16px 22px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
z-index:999;
}

/* FOOTER */

footer{
background:#1a0f24;
color:white;
text-align:center;
padding:40px 20px;
margin-top:60px;
}

footer a{
color:#ff9ac9;
text-decoration:none;
font-weight:bold;
}

/* MOBILE */

@media(max-width:700px){

header h1{
font-size:2rem;
}

}

.card img{
width:100%;
height:200px;
object-fit:cover;
border-radius:10px;
margin-bottom:15px;
}

.card{
background:#fff0f6;
border:1px solid rgba(72,31,97,0.1);
}

.card h3{
color:#481f61;
}

/* ABOUT SECTION */

#about{
padding:80px 20px;
background:#fff;
}

.about-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about-text h2{
color:#e84393;
font-size:2.2rem;
margin-bottom:20px;
}

.about-text p{
margin-bottom:15px;
line-height:1.6;
font-size:17px;
}

.about-image img{
width:100%;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* MOBILE */

@media(max-width:800px){

.about-container{
grid-template-columns:1fr;
}

}

/* LOGO */

.logo{
display:flex;
align-items:center;
gap:10px;
text-decoration:none;
}

.logo img{
width:45px;
transition:0.3s;
}

.logo:hover img{
transform:scale(1.1);
}

.logo span{
font-weight:bold;
font-size:18px;
color:#481f61;
}

#about h2,
#services h2,
#contact h2{
color:#481f61;
}

.btn{
background:linear-gradient(135deg,#e84393,#481f61);
color:white;
}

.btn:hover{
opacity:0.9;
}

.area{
background:linear-gradient(135deg,#ffe6f2,#f3e5f5);
}

.call-float{
background:#481f61;
}

/* MENU TOGGLE */

.menu-toggle{
display:none;
font-size:30px;
cursor:pointer;
color:#481f61;
}

/* MOBILE */

@media(max-width:700px){

.menu-toggle{
display:block;
}

nav ul{
position:absolute;
top:70px;
left:0;
width:100%;
background:white;
flex-direction:column;
align-items:center;
padding:20px 0;
gap:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
border-radius:0 0 15px 15px;

/* CLAVE */
display:none;
}

nav ul.active{
display:flex;
}

}