/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f5f7fa;
    color: #111;
}

/* CONTAINER */
.container{
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 0 15px;
}

/* HEADER */
.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(15,23,42,.88);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,.08);
    padding:10px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 150px;
    max-height: 150px;
    width: auto;
}

.logo img {
    transition: 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}
/* MENU */
.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    color: #cbd5e1;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 8px;
    transition: 0.3s;
}

.menu a:hover {
    background: #1e293b;
    color: #fff;
}

/* CTA */
.cta-nav {
    background: #ef4444;
    padding: 5px 16px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
}

/* HERO */
.hero {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    background: linear-gradient(
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.6)
    ),
    url('assets/hero.png') center/cover no-repeat;
}
.hero-box {
    max-width: 800px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
     color:#fff;
}

.hero p {
    color: white;
    margin-bottom: 20px;
}

/* SEARCH */
.search-main {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.search-main input{
    width:520px;
    max-width:100%;
    padding:16px 18px;
    border:none;
    border-radius:14px 0 0 14px;
    font-size:15px;
}
.search-main button{
    padding:16px 26px;
    border:none;
    background:#ef4444;
    color:#fff;
    border-radius:0 14px 14px 0;
    cursor:pointer;
    font-weight:800;
}

/* QUICK LINKS */
.quick-links a {
    display: inline-block;
    margin: 5px;
    padding: 8px 12px;
    background: #eef2f7;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
}

/* CATEGORIES */
.categories {
    padding: 50px 0;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cat-card {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.cat-card:hover {
    transform: translateY(-5px);
}

/* PRODUCTS */
.products {
    padding: 60px 0;
}

.products h2 {
    text-align: center;
    margin-bottom: 30px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
}

.card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

body{
    font-family:'Inter',sans-serif;
    background:#f8fafc;
    color:#0f172a;
    padding-top:90px;
}

.card-body strong {
    color: #ef4444;
}

/* BUTTONS */
.btn {
    display: block;
    margin-top: 10px;
    text-align: center;
    background: #ef4444;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
}

/* TRUST */
.trust {
    background: #0f172a;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

/* CTA */
.cta {
    background: #ef4444;
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}

.btn-dark {
    background: #000;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    border-radius: 6px;
}

/* FOOTER */
footer{
    background:#020617;
    color:#94a3b8;
    text-align:center;
    padding:30px 20px;
    margin-top:60px;
}


.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cta-nav {
    background: #ef4444;
    padding: 8px 14px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    transition: 0.3s;
}

.cta-nav:hover {
    background: #dc2626;
}
/* HEADER BASE */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* CENTER GROUP (LOGO + MENU) */
.center-group {
    display: flex;
    align-items: center;
    gap: 40px;   /* distanca logo - menu */
}

/* LOGO */
.logo img {
    height: 90px;
    width: auto;
}

/* MENU */
.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    color: #cbd5e1;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 8px;
    transition: 0.3s;
}

.menu a:hover {
    background: #1e293b;
    color: #fff;
}

/* CTA */
.cta-nav {
    background: #ef4444;
    padding: 8px 16px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
}

 

.card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.25s;
}

.card:hover{
    transform:translateY(-6px);
}

.card img{
    width:100%;
    height:210px;
    object-fit:cover;
    background:#f3f4f6;
}

.card-body{
    padding:18px;
}

.card-body h3{
    margin:8px 0;
    font-size:18px;
}

.card-body strong{
    display:block;
    font-size:20px;
    margin:12px 0;
    color:#111827;
}

 .hero{
    min-height:92vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:120px 20px 80px;

    background:
    linear-gradient(
        rgba(15,23,42,.75),
        rgba(15,23,42,.75)
    ),
    url('assets/hero.png') center/cover no-repeat;
}

.hero h1{
    color:#fff;
    font-size:54px;
    line-height:1.1;
    font-weight:800;
    max-width:780px;
    margin:0 auto 18px;
}

.hero p{
    color:#e5e7eb;
    font-size:18px;
}

.product-img{
    height:220px;
    background:#f3f4f6;
    display:flex;
    align-items:center;
    justify-content:center;
}

.product-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.brand-badge{
    display:inline-block;
    background:#eef2ff;
    color:#1d4ed8;
    font-size:12px;
    font-weight:800;
    padding:6px 12px;
    border-radius:30px;
    margin-bottom:10px;
}

.card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 14px 40px rgba(15,23,42,.10);
    transition:.25s ease;
}

.card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(15,23,42,.16);
}

.card-body{
    padding:20px;
}

.card-body h3{
    font-size:18px;
    margin:8px 0 12px;
    color:#111827;
}

.card-body strong{
    display:block;
    font-size:22px;
    color:#111827;
    margin-bottom:14px;
}

.btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:100%;
    background:#16a34a;
    color:white;
    padding:12px 16px;
    border-radius:12px;
    text-decoration:none;
    font-weight:800;
}

.page-hero{
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    padding:80px 0;
    color:white;
    text-align:center;
}

.page-hero span{
    display:inline-block;
    background:rgba(255,255,255,.14);
    padding:7px 14px;
    border-radius:30px;
    font-weight:800;
    margin-bottom:16px;
}

.page-hero h1{
    font-size:48px;
    margin:0 0 12px;
}

.page-hero p{
    color:#e5e7eb;
    font-size:17px;
}

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:22px;
}

.section-head h2{
    font-size:32px;
    margin:0;
}

.section-head p{
    color:#64748b;
    margin-top:6px;
}

.product-filter{
    background:white;
    padding:18px;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(15,23,42,.08);
    display:grid;
    grid-template-columns:2fr 1fr 1fr auto auto;
    gap:12px;
    margin-bottom:30px;
}

.product-filter input,
.product-filter select{
    height:46px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:0 14px;
    font-family:Inter, sans-serif;
}

.product-filter button{
    border:none;
    background:#1d4ed8;
    color:white;
    padding:0 20px;
    border-radius:12px;
    font-weight:800;
    cursor:pointer;
}

.product-filter a{
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f1f5f9;
    color:#0f172a;
    padding:0 18px;
    border-radius:12px;
    text-decoration:none;
    font-weight:800;
}

.badges{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    margin-bottom:10px;
}

.season-badge{
    display:inline-block;
    background:#ecfdf5;
    color:#15803d;
    font-size:12px;
    font-weight:800;
    padding:6px 12px;
    border-radius:30px;
}

.empty-products{
    grid-column:1/-1;
    background:white;
    padding:35px;
    border-radius:18px;
    text-align:center;
    color:#64748b;
}

@media(max-width:900px){
    .product-filter{
        grid-template-columns:1fr;
    }

    .page-hero h1{
        font-size:34px;
    }
}

.menu a.active{
    background:#1e293b;
    color:#fff;
}


.contact-section{
    padding:70px 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.contact-info,
.contact-form-box{
    background:white;
    border-radius:24px;
    padding:30px;
    box-shadow:0 15px 40px rgba(15,23,42,.08);
}

.contact-info h2,
.contact-form-box h2{
    margin-bottom:24px;
    font-size:30px;
}

.contact-card{
    padding:18px;
    background:#f8fafc;
    border-radius:16px;
    margin-bottom:16px;
}

.contact-card strong{
    display:block;
    margin-bottom:6px;
    color:#0f172a;
}

.contact-card p{
    color:#64748b;
    line-height:1.6;
}

.whatsapp-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:12px;
    background:#16a34a;
    color:white;
    text-decoration:none;
    padding:14px 24px;
    border-radius:14px;
    font-weight:800;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    border:1px solid #e2e8f0;
    border-radius:14px;
    padding:16px;
    font-family:Inter,sans-serif;
}

.contact-form textarea{
    min-height:160px;
    resize:vertical;
}

.contact-form button{
    height:52px;
    border:none;
    background:#1d4ed8;
    color:white;
    border-radius:14px;
    font-weight:800;
    cursor:pointer;
}

.map-section{
    padding:0 0 60px;
}

.map-section iframe{
    width:100%;
    height:450px;
    border:none;
}

@media(max-width:900px){

    .contact-grid{
        grid-template-columns:1fr;
    }

}

.success-msg{
    background:#dcfce7;
    color:#166534;
    padding:14px;
    border-radius:12px;
    margin-bottom:18px;
    font-weight:700;
}
/* MOBILE RESPONSIVE */
@media (max-width: 768px){

    .container{
        width: 92%;
        margin: auto;
    }

    .nav{
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .logo img{
        max-width: 150px;
    }

    .menu{
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .menu a{
        display: block;
        padding: 10px;
        background: #f5f5f5;
        border-radius: 8px;
    }

    .auth-buttons{
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .cta-nav{
        width: 100%;
        text-align: center;
    }

    .hero{
        padding: 40px 15px;
    }

    .hero-box{
        width: 100%;
        padding: 25px 15px;
    }

    .hero-box h1{
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-box p{
        font-size: 16px;
    }

    .search-main{
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .search-main input,
    .search-main button{
        width: 100%;
        box-sizing: border-box;
    }

    .quick-links{
        flex-direction: column;
        gap: 10px;
    }

    .grid,
    .grid-4{
        grid-template-columns: 1fr !important;
        gap: 18px;
    }

    .card{
        width: 100%;
    }

    .product-img img{
        max-width: 100%;
        height: auto;
    }

    .trust .grid-4{
        text-align: center;
    }

    .cta{
        padding: 35px 15px;
        text-align: center;
    }

    footer{
        text-align: center;
        padding: 20px;
    }
}
