*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}
body{
    font-family:'Segoe UI', sans-serif;
    background:#0f0f0f;
    color:white;
}
nav{
    position:fixed;
    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(0,0,0,0.7);
    backdrop-filter:blur(10px);
    z-index:1000;
}
.logo{
    font-size:1.5rem;
    font-weight:bold;
    color:#afafaf;
    letter-spacing:2px;
}
.nav-links{
    list-style:none;
    display:flex;
    gap:30px;
}
.nav-links a{
    color:#afafaf;
    text-decoration:none;
    transition:0.3s;
}
.nav-links a:hover{
    color:#ff4f81;
}
#menu-toggle{
    display:none;
}
.hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:5px;
}
.hamburger span{
    width:25px;
    height:3px;
    background:#afafaf;
}
.hero{
    height:100vh;
    background:linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("assets/IMG_3532.jpeg");
    background-size:cover;
    background-position:center;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:0 20px;
}
.hero h1{
    font-size:4rem;
    color:#afafaf;
    margin-bottom:20px;
}
.hero p{
    max-width:600px;
    font-size:1.2rem;
    margin-bottom:30px;
}
.hero button{
    padding:15px 35px;
    border:none;
    background:#ff4f81;
    color:white;
    font-size:1rem;
    border-radius:30px;
    cursor:pointer;
    transition:0.3s;
}
section{
    padding:100px 8%;
    text-align:center;
}
section h2{
    font-size:2.5rem;
    margin-bottom:50px;
    color:#ff4f81;
}
.services{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:30px;
}
.card{
    background:rgba(255,255,255,0.05);
    padding:40px 30px;
    border-radius:15px;
    transition:0.6s;
}
.card:hover{
    transform:translateY(-10px);
    background:#ff4f81;
}
.menu{
    max-width:600px;
    margin:auto;
}
.menu-item{
    display:flex;
    justify-content:space-between;
    padding:15px 0;
    border-bottom:1px solid #333;
}
.contact{
    background:#151515;
    padding:80px 8%;
}
footer{
    background:black;
    text-align:center;
    padding:25px;
    color:#aaa;
}
@media(max-width:768px){
    
    .nav-links{
        position:absolute;
        top:70px;
        right:0;
        background:#111;
        width:100%;
        flex-direction:column;
        align-items:center;
        display:none;
        padding:30px 0;
        gap:20px;
    }
    
    #menu-toggle:checked + .hamburger + .nav-links{
        display:flex;
    }
    
    .hamburger{
        display:flex;
    }
    
    .hero h1{
        font-size:2.5rem;
    }
    
    .hero p{
        font-size:1rem;
    }
    
    section{
        padding:70px 6%;
    }
    
    section h2{
        font-size:2rem;
    }   
}
#ig {
    text-decoration: none;
    color: white;
    text-decoration: underline;
}
#color {
    color: #afafaf;
}  
#contact2 {
    color: #afafaf;
}     
#parrdn {
    color: #afafaf;
}
.mapa-section {
    width: 100%;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    margin: 0;
}
.mapa-wrapper {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 380px; 
    overflow: hidden;
    border-radius: 12px;
}
.mapa-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    border-radius: 12px;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3a3a3a, #2c2c2c);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.8s ease, transform 0.8s ease;
    border-radius: 12px;
}
.overlay span {
    color: white;
    font-size: 24px;
    letter-spacing: 2px;
    padding: 18px 45px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    transition: all 0.4s ease;
}
.overlay span:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.05);
}
.overlay.hidden {
    opacity: 0;
    transform: scale(1.08);
    pointer-events: none;
}
#servicios {
    margin-top: 0; 
    padding-top: 0;
}