@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600&family=Raleway:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {
    scroll-behavior: smooth;
}

html, body {
overflow-x: hidden;
}

body {
    font-family: 'Manrope', sans-serif;
    background: #f7f7f7;
    color: #2d2c42;
}

h1 {
    font-weight: 700;
    letter-spacing: 1px;
}

p {
    font-weight: 400;
    line-height: 1.6;
}
img{
max-width:100%;
height:auto;
display:block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Raleway', sans-serif;
    color: #2d2c42;
}

section {
    padding: 80px 20px;
}
/* CURSOR MANITA PARA ELEMENTOS CLICKEABLES */

.insta,
.footer-link,
.whatsapp,
#topBtn,
.slider-btn,
.nav-links a{
cursor:pointer;
}
/* NAV */

header {

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    /* transparencia */
    border-bottom: 1px solid rgba(216, 79, 122, 0.7);

    /* efecto glass moderno */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    z-index: 100;

    /* línea rosa inferior */
    border-bottom: 1px solid #d84f7a;

}

:root {
    --pink: #ff4fa3;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px;
}


.nav-logo img{
height:52px;
display:block;
}

/* LINKS */

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    font-family: 'Raleway', sans-serif;
    color: #aaa;
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    text-shadow: 0 2px 4px rgba(35, 31, 32, 0.35);
    transition: .25s ease;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: width .3s ease;
}

.nav-links a:hover {
    color: var(--pink);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--pink);
}

/* HAMBURGER */

.menu-btn{

display:none;

width:30px;
height:24px;
flex-direction:column;
justify-content:space-between;
align-items:center;

cursor:pointer;

}

/* LINEAS */

.menu-btn span {

margin-bottom: 4px;	
    display: block;
    width: 100%;
    height: 3px;
    background: #ff4fa3;
    border-radius: 3px;
    transition: all .35s ease;

}

/* ANIMACION */

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* MOBILE */

@media (max-width:768px) {

.nav-logo{
display:block;
}

    .menu-btn {
        display: flex;
    }

    /* MENU MOBILE */

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(45, 44, 66, 0.95);
        backdrop-filter: blur(6px);
        flex-direction: column;
        align-items: center;
        gap: 22px;
        padding: 35px 0;
        opacity: 0;
        transform: translateY(-15px);
        pointer-events: none;
        transition: all .35s ease;
    }

    /* MENU ABIERTO */

    .nav-links.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

}

/* HERO */


#home h1,
#home p {
    font-family: 'Raleway', sans-serif;
}


#home {

    height: 100vh;
    background: #2d2c42;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 20px;

}

.hero {

    display: flex;
    flex-direction: column;
    align-items: center;

    /* controla espacio real entre logo y texto */
    gap: 6px;

    /* sube todo el bloque */
    transform: translateY(-80px);

    position: relative;

}


/* LOGO */

.hero-logo {

    width: 600px;
    max-width: 90%;

    margin: 0;

    position: relative;
    z-index: 2;

    animation: float 10s ease-in-out infinite;

}


/* GLOW EFFECT detrás del logo */

.hero::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    background: radial-gradient(circle, #d84f7a55 0%, transparent 70%);

    filter: blur(60px);

    animation: glowPulse 6s ease-in-out infinite;

    z-index: 1;

}


/* TEXTO */

.hero-text {

    color: white;

    font-size: 19px;

    max-width: 420px;

    margin: 0;

    line-height: 1.4;

    opacity: 0;

    transform: translateY(-40px);

    animation: textReveal 1.8s ease forwards;
    animation-delay: .6s;

}


/* ANIMATIONS */

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }

}

@keyframes glowPulse {

    0% {
        opacity: .6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: .6;
        transform: scale(1);
    }

}

@keyframes textReveal {

    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}

@media(max-width:768px) {

    .hero {
        transform: translateY(-40px);
    }

    .hero-logo {
        width: 340px;
    }

    .hero-text {
        font-size: 16px;
    }

}

/* FX */

@keyframes fadeText {

    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }

}



/* CONTENT */

.wrap {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    font-size: 28px;
}



/* SERVICES */

.services {
    padding: 110px 8%;
    background: #ffffff;
}

.services-header {
    text-align: center;
    max-width: 720px;
    margin: auto;
    margin-bottom: 70px;
}

.services-header h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    color: #2d2c42;
    margin-bottom: 12px;
}

.services-header p {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* GRID */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .35s;
}

/* IMAGEN CONTROLADA */

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) saturate(1.05);
}

/* CONTENIDO */

.service-content {
    padding: 26px;
}

.service-content h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d2c42;
}

.service-content p {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* HOVER */

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}
/* SERVICES MOBILE */

@media (max-width:768px){

.services-grid{
grid-template-columns:1fr;
gap:28px;
}

.service-card img{
height:200px;
}

}
/* FOOTER */

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

.footer-logo {
    width: 260px;
    margin-bottom: 10px;
}

.insta{
color:#E1306C;
font-size:24px;
display:inline-block;
margin-top:10px;

transition:.25s ease;
}

.insta:hover{
color:#9e9e9e;
transform:scale(1.1);
}

.copy {
    margin-top: 20px;
    font-size: 13px;
    color: #808080;
}

.footer-link{

color:#ccc;
text-decoration:none;

transition:.25s;

}

.footer-link:hover{

color:#d84f7a;

}

/* WRAPPER DEL FOOTER */

.footer-wrap{
max-width:1000px;
margin:0 auto;
}

/* LOGO */

.footer-logo{
display:block;
margin:0 auto 30px auto;
}

/* GRID */

.footer-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
text-align:left;
}

/* MAPA */

.footer-map iframe{
width:100%;
aspect-ratio:16/9;
border:0;
border-radius:8px;
}

/* RESPONSIVE */

@media(max-width:768px){

.footer-grid{
grid-template-columns:1fr;
text-align:center;
gap:30px;
}

}

.whatsapp{

position:fixed;

bottom:25px;
left:25px;

width:52px;
height:52px;

border-radius:50%;

background:#25D366;

display:flex;
align-items:center;
justify-content:center;
text-decoration: none;
font-size:26px;
color:white;

box-shadow:0 8px 20px rgba(0,0,0,.25);

z-index:999;

transition:.25s;

}

.whatsapp:hover{

background:#1ebe5d;
transform:scale(1.08);

}

/* TOP BUTTON */

#topBtn {

    position: fixed;
    bottom: 25px;
    right: 25px;

    width: 42px;
    height: 42px;

    border: none;

    border-radius: 50%;

    background: #d84f7a;
    color: white;

    cursor: pointer;

    display: none;

}
@media (max-width:768px){

#topBtn{
display:none !important;
}

}


/* DESKTOP */

@media(min-width:768px) {


    .services {

        grid-template-columns: 1fr 1fr;

    }

}



/* MOBILE NAV */

@media(max-width:768px) {

    .menu-btn {
        display: block;
    }

    .nav-links {

        position: absolute;
        top: 60px;
        left: 0;

        width: 100%;

        background: #2d2c42;

        flex-direction: column;
        align-items: center;

        display: none;

    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 15px 0;
    }

}
 
.services-slider{
position:relative;
overflow:hidden;
width:100%;
}

.slider-track{
display:flex;
transition:transform .5s ease;
}

.service-card{
    flex:0 0 33.333%;
    padding:10px;
    box-sizing:border-box;
    overflow:hidden;
}

.service-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:all .4s ease;
}

.service-card:hover img{
    object-fit:contain;
    transform:scale(1.05);
pointer
}
/* botones */

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:#fff;
    border:none;
    font-size:28px;
    padding:10px 14px;
    border-radius:50%;
    cursor:pointer;   /* ← esto muestra la manita */
    z-index:10;
    box-shadow:0 2px 8px rgba(0,0,0,.2);
    transition:all .2s ease;
}

.slider-btn:hover{
    background:#f0f0f0;
}

.prev{left:10px;}
.next{right:10px;}

/* tablet */

@media (max-width:900px){
.service-card{
flex:0 0 50%;
}
}

/* mobile */

@media (max-width:600px){
.service-card{
flex:0 0 100%;
}
}


