

/* paleta de colores */

/* naranja fenix : #c3502a  */

/* color tierra : #bf8f69 */

/* color beige : #e6d6c2  */




/* header------------------------------------------------- */
/* RESET */
/* RESET */
/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   BASE
========================= */
body {
    font-family: 'Inter', sans-serif;
    background-color: #e6d6c2;
    color: #3a2e2a;
    line-height: 1.6;
    position: relative;
}

/* FONDO FÉNIX SUAVE */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: url('../images/logo.png.jpeg') no-repeat center;
    background-size: 600px;

    opacity: 0.06;
    pointer-events: none;
    z-index: -1;
}

/* =========================
   TIPOGRAFÍA
========================= */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

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

p {
    margin-bottom: 15px;
}

/* =========================
   NAV
========================= */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;

    background: rgba(230, 214, 194, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav h2 {
    letter-spacing: 2px;
}

.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #3a2e2a;
    font-size: 14px;
    transition: 0.3s;
}

.nav a:hover {
    color: #c3502a;
}

/* =========================
   BOTONES
========================= */
.btn, .btn-primary {
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
}

.btn {
    border: 1px solid #c3502a;
    color: #ffffff;
}

.btn-primary {
    background: #c3502a;
    color: #ffffff;
    display: inline-block;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #a84322;
}

/* =========================
   HERO (ARREGLADO)
========================= */
.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 20px;

    /* 🔥 CLAVE: ahora transparente */
    background: transparent;
}

.hero h1 {
    font-size: 48px;
    max-width: 700px;
    margin-bottom: 20px;
}

.hero p {
    letter-spacing: 3px;
    color: #7a5c4f;
}

.hero-sub {
    margin-top: 10px;
    font-size: 16px;
    opacity: 0.8;
}

.hero-btn {
    margin-top: 30px;
}

/* =========================
   SECCIONES
========================= */
.section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.section.light {
    background: #bf8f69;
    color: white;
}

/* =========================
   SERVICIOS
========================= */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    padding: 30px;
    background: white;
    border-radius: 15px;
    transition: 0.3s;
}

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

.light .card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

/* =========================
   TESTIMONIOS
========================= */
blockquote {
    font-style: italic;
    margin: 20px auto;
    max-width: 600px;
    opacity: 0.8;
}

/* =========================
   CONTACTO
========================= */

#contact a {
    color: #c3502a;
    text-decoration: none;
}

#contact a.btn-primary {
    color: #ffffff;
}

/* =========================
   FORMULARIO
========================= */
.form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.form label {
    margin-top: 15px;
    font-size: 14px;
}

.form input,
.form select,
.form textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
}

.form button {
    margin-top: 20px;
}

/* =========================
   WHATSAPP
========================= */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #c3502a;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.whatsapp-btn img {
    width: 30px;
}

/* =========================
   FOOTER
========================= */
footer {
    text-align: center;
    padding: 30px;
    font-size: 14px;
    background: #3a2e2a;
    color: #e6d6c2;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .nav {
        flex-direction: column;
        padding: 15px 20px;
        text-align: center;
    }

    .nav h2 {
        margin-bottom: 10px;
    }

    .nav a {
        margin: 6px;
        font-size: 13px;
    }

    .hero {
        height: auto;
        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}
.btn.btn-primary {
    color: #ffffff;
}