/* =====================================================
   BRIDAS.AR - STYLE.CSS
   ===================================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    background:#fff;
    line-height:1.7;
}

img{
    display:block;
    max-width:100%;
}

.wrap{
    width:min(1200px,92%);
    margin:auto;
}

/* ================= HEADER ================= */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
    z-index:9999;
}

header .wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 0;
}

.logo{
    height:72px;
}

nav{
    display:flex;
    gap:34px;
}

nav a{
    text-decoration:none;
    color:#1f7a3d;
    font-weight:600;
    font-size:17px;
    transition:.3s;
}

nav a:hover{
    color:#14572d;
}

/* ================= HERO ================= */

.hero{
    margin-top:104px;
    min-height:90vh;
    background:url("img/hero.jpg") center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.58);
}

.overlay{
    position:relative;
    z-index:2;
    width:100%;
    padding:120px 0;
}

.hero-box{
    max-width:760px;
    color:#fff;
}

.hero h1{
    font-size:60px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero p{
    font-size:21px;
    margin-bottom:18px;
}

/* ================= BOTONES ================= */

.btn,
.btn2,
.content .btn2{
    display:inline-block;
    padding:16px 34px;
    background:#1f7a3d !important;
    color:#fff !important;
    border:2px solid #1f7a3d !important;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    margin-top:10px;
    margin-right:12px;
}

.btn:hover,
.btn2:hover,
.content .btn2:hover{
    background:#14572d !important;
    border-color:#14572d !important;
    color:#fff !important;
}

/* ================= GENERAL ================= */

section{
    padding:100px 0;
}

h2{
    text-align:center;
    font-size:42px;
    color:#14572d;
    margin-bottom:35px;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:30px;
    margin-top:45px;
}

.features div{
    background:#fff;
    padding:35px;
    border-radius:14px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.features div:hover{
    transform:translateY(-8px);
}

.features i{
    color:#1f7a3d;
    font-size:50px;
    margin-bottom:20px;
}

/* ================= PRODUCTOS ================= */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    margin-top:45px;
}

.card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

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

.card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.content{
    padding:28px;
}

.content h3{
    color:#14572d;
    margin-bottom:15px;
}

.content p{
    margin-bottom:20px;
}

.content .btn2{
    display:block;
    text-align:center;
    width:100%;
}

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

.contact{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

input,
textarea{
    padding:15px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
}

button{
    padding:16px;
    background:#1f7a3d;
    color:#fff;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
}

button:hover{
    background:#14572d;
}

.mapa iframe{
    width:100%;
    height:380px;
    border:0;
    border-radius:12px;
    margin-top:20px;
}

/* ================= FAQ ================= */

.faq h3{
    color:#14572d;
    margin-top:24px;
    margin-bottom:8px;
}

/* ================= FOOTER ================= */

footer{
    background:#14572d;
    color:#fff;
    text-align:center;
    padding:60px 20px;
}

footer p{
    color:#ddd;
}

/* ================= WHATSAPP ================= */

.wa{
    position:fixed;
    right:22px;
    bottom:22px;
    width:62px;
    height:62px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:32px;
    box-shadow:0 8px 20px rgba(0,0,0,.2);
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){

header .wrap{
    flex-direction:column;
    gap:15px;
}

nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
}

.hero{
    margin-top:150px;
    min-height:70vh;
}

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

.hero p{
    font-size:18px;
}

.btn,
.btn2,
.content .btn2{
    width:100%;
    margin:10px 0;
    text-align:center;
}

.contact{
    grid-template-columns:1fr;
}

section{
    padding:70px 0;
}

h2{
    font-size:34px;
}
}
