/* =========================
   FITOTAJO - ESTILOS BASE
   FASE 2
========================= */

:root{

    --primary:#2E7D32;
    --primary-dark:#1B5E20;
    --accent:#2EC4B6;

    --text:#1a1a1a;
    --muted:#666;

    --bg:#ffffff;
    --light:#f6f8f7;

    --radius:16px;

    --shadow:0 10px 30px rgba(0,0,0,0.08);

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:var(--text);
    background:var(--bg);
    line-height:1.6;
	overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

/* =========================
   CONTENEDOR
========================= */

.container{
    width:min(1200px,92%);
    margin:auto;
}

/* =========================
   BOTONES
========================= */

.btn{
    display:inline-block;
    padding:14px 26px;
    border-radius:12px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
}

.btn-primary{
    background:var(--primary);
    color:white;
}

.btn-primary:hover{
    background:var(--primary-dark);
    transform:translateY(-2px);
}

.btn-secondary{
    border:2px solid white;
    color:white;
}

/* =========================
   HEADER
========================= */

.header{
    position:fixed;
    top:0;
    width:100%;
    background:white;
    z-index:1000;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo img{
    height:55px;
}

.nav{
    display:flex;
    gap:25px;
}

.nav a{
    text-decoration:none;
    color:var(--text);
    font-weight:600;
    transition:0.3s;
}

.nav a:hover{
    color:var(--primary);
}

.menu-toggle{
    display:none;
    font-size:28px;
    background:none;
    border:none;
    cursor:pointer;
}

/* =========================
   HERO
========================= */

.hero{
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    position:relative;

    background:url('https://images.unsplash.com/photo-1464226184884-fa280b87c399') center/cover no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.hero-content{
    position:relative;
    max-width:800px;
}

.hero-badge{
    background:var(--primary);
    padding:8px 16px;
    border-radius:50px;
    font-size:14px;
    display:inline-block;
    margin-bottom:20px;
}

.hero h1{
    font-size:clamp(28px,5vw,52px);
    margin-bottom:20px;
}

.hero p{
    color:#eaeaea;
    margin-bottom:30px;
}

/* =========================
   SERVICIOS
========================= */

.services{
    padding:100px 0;
    background:var(--light);
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header span{
    color:var(--primary);
    font-weight:600;
}

.section-header h2{
    font-size:36px;
    margin:10px 0;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.service-card{
    background:white;
    padding:30px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-6px);
}

.service-card .icon{
    font-size:30px;
    margin-bottom:15px;
}

/* =========================
   STATS
========================= */

.stats{
    background:var(--primary);
    color:white;
    padding:80px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
    gap:20px;
}

.stat-item h3{
    font-size:42px;
}

/* =========================
   ABOUT
========================= */

.about{
    padding:100px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-content span{
    color:var(--primary);
    font-weight:600;
}

.about-content h2{
    font-size:34px;
    margin:15px 0;
}

.about-content ul{
    margin-top:20px;
    list-style:none;
}

.about-content li{
    margin-bottom:10px;
}

/* =========================
   PROCESS
========================= */

.process{
    padding:100px 0;
    background:var(--light);
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.process-card{
    background:white;
    padding:30px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

.process-card span{
    font-size:24px;
    font-weight:800;
    color:var(--primary);
}

/* =========================
   GALLERY
========================= */

.gallery{
    padding:100px 0;
}

.gallery-filters{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:40px;
    flex-wrap:wrap;
}

.gallery-filters button{
    padding:10px 18px;
    border:none;
    background:#eee;
    border-radius:50px;
    cursor:pointer;
    font-weight:600;
}

.gallery-filters button.active{
    background:var(--primary);
    color:white;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:15px;
}

.gallery-grid img{
    border-radius:12px;
    height:220px;
    object-fit:cover;
}

/* =========================
   CTA
========================= */

.cta{
    padding:80px 0;
    text-align:center;
    background:linear-gradient(135deg,var(--primary),var(--accent));
    color:white;
}

.cta h2{
    font-size:36px;
    margin-bottom:15px;
}

/* =========================
   CONTACT
========================= */

.contact{
    padding:100px 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact input,
.contact textarea{
    width:100%;
    padding:14px;
    margin-bottom:15px;
    border-radius:10px;
    border:1px solid #ddd;
}

/* =========================
   FOOTER
========================= */

.footer{
    text-align:center;
    padding:30px;
    background:#111;
    color:white;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .about-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .process-grid{
        grid-template-columns:1fr 1fr;
    }

    .nav{
        display:none;
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:white;
        flex-direction:column;
        padding:20px;
    }

    .menu-toggle{
        display:block;
    }

}

/* =========================
   SCROLL ANIMATIONS
========================= */

.hidden{
    opacity:0;
    transform:translateY(40px);
    transition:all 1s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

/* =========================
   HEADER SCROLL
========================= */

.header.scrolled{
    background:white;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* =========================
   MOBILE MENU
========================= */

.nav.active{
    display:flex;
}

/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:90px;

    width:60px;

    height:60px;

    background:#25D366;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:28px;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(0,0,0,0.2);

    z-index:999;

}

/* =========================
   SCROLL TOP BUTTON
========================= */

#scrollTopBtn{

    position:fixed;

    bottom:100px;

    right:25px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:white;

    font-size:20px;

    cursor:pointer;

    display:none;

    z-index:999;

}

/* =========================
   REGISTRY BOX
========================= */

.registry-box{

    margin-top:40px;

    padding:25px;

    background:var(--light);

    border-radius:16px;

    border-left:5px solid var(--primary);

}

.registry-box h3{

    margin-bottom:15px;

    color:var(--primary);

}

.registry-box p{

    margin-bottom:18px;

    color:var(--muted);

}

.registry-item{

    margin-bottom:18px;

}

.registry-item strong{

    display:block;

    margin-bottom:5px;

    color:var(--text);

}

.registry-item span{

    color:var(--primary-dark);

    font-weight:600;

}

/* =========================
   CONTACT INFO CARD
========================= */

.contact-info{

    background:white;

    padding:35px;

    border-radius:16px;

    border-left:5px solid var(--primary);

    box-shadow:var(--shadow);

}

.contact-info span{

    color:var(--primary);

    font-weight:600;

}

.contact-info h2{

    margin:10px 0 25px;

    font-size:36px;

}

.info-item{

    margin-bottom:25px;

}

.info-item strong{

    display:block;

    margin-bottom:5px;

}

.info-item p{

    color:var(--text);

    font-size:18px;

}

/* =========================
   CONTACT FORM CARD
========================= */

.contact-form{

    background:white;

    padding:35px;

    border-radius:16px;

    box-shadow:var(--shadow);

}

/* =========================
   FORM HEADER
========================= */

.form-badge{

    color:var(--primary);

    font-weight:600;

    display:block;

    margin-bottom:10px;

}

.contact-form h2{

    font-size:36px;

    margin-bottom:15px;

}

.form-text{

    color:var(--muted);

    margin-bottom:30px;

    line-height:1.7;

}

/* =========================
   FOOTER
========================= */

.footer{

    background:#111;

    color:white;

    padding:80px 0 30px;

    overflow:hidden;

}

.footer-grid{

    display:grid;

    grid-template-columns:
        1.3fr
        1fr
        1fr
        1fr;

    gap:60px;

    margin-bottom:40px;

    align-items:start;

}

.footer-logo{

    width:180px;

    margin:0 auto 20px;

    display:block;

}

.footer-col:first-child{

    text-align:center;

}

.footer-col h3{

    margin-bottom:20px;

    color:var(--primary);

}

.footer-col p,
.footer-col li{

    margin-bottom:10px;

    opacity:.85;

}

.footer-col ul{

    list-style:none;

    padding:0;

}

.footer-col a{

    color:white;

    text-decoration:none;

    transition:.3s;

}

.footer-col a:hover{

    color:var(--primary);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

    padding-top:25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-legal{

    display:flex;

    gap:20px;

}

.footer-legal a{

    color:white;

    text-decoration:none;

    opacity:.8;

}

.footer-legal a:hover{

    color:var(--primary);

}