cabody {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* BACKGROUND HOME */

body{
    background:linear-gradient(135deg,#f8c8dc,#f3a6c7);
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
}

img{
	max-width:100%;
	height:auto;
}

/* NAVBAR */
.navbar {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
    padding: 15px;
    flex-wrap:wrap;
    gap:10px;
    padding:15px;
}


.nav-links a {
    text-align: center;
    color: white;
    margin: 10px;
    text-decoration: none;
}

.menu-toggle {
    text-align: center;
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

.navbar a {
    text-align: center;
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    padding:10px 15px;
}

/* HERO */
/* HERO GENERAL */
.hero {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

/* LOGO EN ESQUINA */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 120px;
    z-index: 10;
    border-radius: 10px;
}

/* CARRUSEL */
.carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* IMAGEN ACTIVA */
.carousel img.active {
    opacity: 1;
}

.hero-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* mantiene proporción y evita recorte */
    border-radius: 10px; /* opcional */
    background:0 #F6A6C1;
}

.hero-left {
    flex: 1;
    background: #050505;
    color: #C8A2C8;
    padding: 50px;
}

.hero-left h1 {
    font-size: 50px;
}

.hero-right {
    flex: 1;
    text-align: center;
}

/* PRESENTACION */

/* GALLERY */

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery img {
    width: 250px;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* MODAL IMAGE */

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 80%;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* SERVICES */
.services {
    background: #F6A6C1;
    padding: 50px;
    text-align: center;
}

.services h2 {
    margin-bottom: 30px;
}


.service-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 300px;
    background: #F6A6C1;
    padding: 50px;
    border-radius: 0px;
}

.card img {
    width: 100%;   /* ancho igual para todas */
    max-width: 250px;
    height: auti; /* altura igual para todas */
    object-fit: conain; /* mantiene proporción sin deformar */
    display: block;
    margin: auto;
    border-radius: 5px;
    transition: transform 0.3s ease; /* animación suave */ 
    cursor: pointer;
    position: relative;
}

.card img:hover {
    transform: scale(1.1); /* agranda la imange */
}

.card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0px 10px 20px rgba(0,0,0,0.2);
}

/* Movimientos */

/* animación al cargar la página */
body {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-enter {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.fade-enter.fade-enter-active {
    opacity: 1;
}

.fade-exit {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.fade-exit.fade-exit-active {
    opacity: 0;
}

/* Contacto */

.content {
    background: #C8A2C8;
    padding: 15px;
    text-align: center;

}

@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        text-align: center;
    }

    .service-container {
        flex-direction: column;
        align-items: center;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
	text-align: center;
        display: none;
        flex-direction: column;
        width: 100%;
        background: black;
    }

    .nav-links a {
        padding: 10px;
        display: block;
	text-align: center;
    }

    .nav-links.active {
        display: flex;
	text-align: center;
    }

}

/* Whatsapp */ 

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1AC91E;
    color: White;
    font-size: 45px;

    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s;
/*    padding: 15px;
    border-radius: 30%;
    text-decoration: none;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s;
*/
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* reviews */ 

.reviews {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px;
}

.review-card {
    background: white;
    padding: 20px;
    width: 260px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

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

.stars {
    color: gold;
    font-size: 22px;
    margin: 10px 0;
}


.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0; 
}

.contact-form {
    resize: none;
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.2);
}

.contact-form input,
.contact-form textarea {
    width: 100%
    height: 120px;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    resize: none;
}

.contact-form textarea {
    height: 120px;
}

.contact-form button {
    padding: 12px;
    background: #4fb3bf;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form button:hover {
    background: #3a9aa6;
}

.map-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ABOUT SECTION */

.about-section{
    font-size: 32px;
    text-align:center;
    margin:10px 10px;
    background:#F6A6C1;
}

.about-buttons{
    margin:20px;
}

.about-buttons button{
    padding:14px 28px;
    margin:10px;
    border:none;
    background:linear-gradient(135deg,#4fb3bf,#2f8f99);
    color:white;
    cursor:pointer;
    border-radius:30px;
    font-size:30px;
    font-weight:600;
    transition:all 0.3s ease;
    box-shadow:0px 4px 10px rgba(0,0,0,0.2);
}

.about-buttons button:hover{
    
    transform:translateY(-2px);
    box-shadow:0px 8px 20px rgba(0,0,0,0.3);
    background:#3a9aa6;
}

.about-content{
    max-width:600px;
    margin:auto;
    background:#F6A6C1;
}

.content-box{
    display:none;
    background:#F6A6C1;
    padding:35px;
    border-radius:18px;
    box-shadow:0px 10px 30px rgba(0,0,0,0.15);
    margin-top:20px;
    transition:all 0.3s ease;
    animation:fadeIn 0.4s ease;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}


/* BUSINESS HOURS */

.hours-section{
    margin:70px auto;
    text-align:center;
}

.hours-section h2{
    font-size:32px;
    color:#2f8f99;
    margin-bottom:30px;
}

.hours-box{
    max-width:500px;
    margin:auto;
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0px 10px 25px rgba(0,0,0,0.15);
}

.day{
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    border-bottom:1px solid #eee;
    font-size:16px;
}

.day:last-child{
    border-bottom:none;
}

.closed{
    color:red;
    font-weight:bold;
}

/* MOBILE RESPONSIVE */

@media (max-width:768px){

.hero{
    flex-direction:column;
    text-align:center;
}

.service-container{
    flex-direction:column;
    align-items:center;
}

.card{
    width:90%;
}

.gallery img{
    width:90%;
}

.contact-form{
    width:90%;
}

.hours-box{
    width:90%;
}

.about-content{
    width:90%;
}

}

/* FONDO ROSA GLOBAL */
.pink-bg {
    /* background: linear-gradient(135deg, White, #ffc1e3); */
background:linear-gradient(135deg,#f8c8dc,#f3a6c7)
}

/* HERO */
.service-hero {
    text-align: center;
    padding: 60px 20px;
    color: white;
}

.service-hero h1 {
    font-size: 2.5rem;
}

.service-hero p {
    font-size: 1.2rem;
}

/* CONTENIDO */
.service-content {
    text-align: center;
    padding: 40px 20px;
}

/* IMAGEN PRO */
.service-img-pro {
    width: 280px;
    border-radius: 20px;
    margin: 20px auto;
    display: block;
    transition: transform 0.3s ease;
}

.service-img-pro:hover {
    transform: scale(1.05);
}

/* CAJA */
.service-box {
    background: white;
    padding: 20px;
    margin: 20px auto;
    border-radius: 20px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* BOTÓN WHATSAPP */
.btn-whatsapp {
    display: inline-block;
    margin-top: 20px;
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: scale(1.05);
}

/* ANIMACIÓN */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    .service-hero h1 {
        font-size: 1.8rem;
    }

    .service-img-pro {
        width: 200px;
    }

    .service-box {
        width: 90%;
    }
}


/* BLOQUE EXTRA PREMIUM */
.service-highlight {
    background: rgba(255,255,255,0.9);
    margin: 20px auto;
    padding: 20px;
    border-radius: 20px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-highlight h3 {
    margin-bottom: 10px;
}
