/* =====================
   ESTILOS GENERALES
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0f0f0f;
    color: #ffffff;
    line-height: 1.6;
}

/* =====================
   HEADER / HERO
===================== */
header {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.85)),
    url("https://images.unsplash.com/photo-1599351431613-18ef1fdd27e1") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

header p {
    max-width: 650px;
    margin: auto;
    font-size: 1.1rem;
}

header a {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: #c9a24d;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s;
}

header a:hover {
    background: #e6bb5c;
}

/* =====================
   SECCIONES
===================== */
section {
    padding: 80px 10%;
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.3rem;
    color: #c9a24d;
}

/* =====================
   SERVICIOS
===================== */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-box {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(201,162,77,.35);
}

.service-box h3 {
    margin-bottom: 10px;
}

/* =====================
   GALERÍA
===================== */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery img {
    width: 100%;
    border-radius: 12px;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* =====================
   TESTIMONIOS
===================== */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.testimonial {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 15px;
    font-size: 0.95rem;
}

/* =====================
   BOTÓN RESEÑA GOOGLE
===================== */
.review-btn {
    display: block;
    margin: 40px auto 0;
    padding: 15px 35px;
    background: #ffffff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    text-align: center;
    width: fit-content;
    transition: 0.3s;
}

.review-btn:hover {
    background: #c9a24d;
    color: #000;
}

/* =====================
   MAPA
===================== */
.map iframe {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    border: none;
}

/* =====================
   BOTÓN WHATSAPP
===================== */
.float{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,.4);
    z-index: 1000;
    transition: 0.3s ease;
}

.float:hover {
    background-color: #ffffff;
    color: #25d366;
    text-decoration: none;
    transform: scale(1.1);
}

.my-float{
    margin-top: 16px;
}

footer {
    text-align: center;
    padding: 30px;
    background: #000;
    font-size: 0.9rem;
}

@media(max-width:768px) {
    header h1 {
        font-size: 2.2rem;
    }
}