:root {
    --bg-main: #060907;
    --bg-secondary: #0A0F0C;
    --bg-card: #0F1712;
    --primary-color: #1ed760; /* Vibrant green from screenshots */
    --primary-glow: rgba(30, 215, 96, 0.2);
    --text-main: #FFFFFF;
    --text-muted: #9CA3AF;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-color: rgba(255, 255, 255, 0.05);
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    z-index: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .logo-text {
    font-family: var(--font-heading);
}

.highlight {
    color: var(--primary-color);
}
.hero-text{
    color: var(--primary-color);
    font-size: 20px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-weight:900;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    backdrop-filter: blur(5px);
    border-radius: 30px;
    padding: 10px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0;
    border-radius: 50px;
    font-weight: 500;
    margin: 0;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #1abf55;
    border-color: #1abf55;
}

.btn-glow {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow), inset 0 0 10px var(--primary-glow);
}

.btn-glow:hover {
    background-color: rgba(30, 215, 96, 0.1);
    box-shadow: 0 0 20px var(--primary-glow), inset 0 0 15px var(--primary-glow);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);

}

.btn-outline-primary:hover {
    background-color: rgba(30, 215, 96, 0.1);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
    border-color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Navbar */
.navbar {
    position: sticky;
    margin: auto;
    margin-top: 10px;
    border-radius: 50px;
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid var(--primary-color);
   
    top: 0;
    left: 0;
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    z-index: 2;
}

.navbar__hidden{
   display: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.1rem;
}
.logo-img{
    background-image: url(../images/logos/logo.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 70%;
    height: 75%;
}

.nav-links {
    display: flex;
margin-right: auto;
margin-left:21vw ;


   

    gap: 2rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
   margin-top: -120px;
}

.hero-bg-image {
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Placeholder background styling, you will replace with actual image */
    background: url('../images/home/image3.1.webp') center/cover no-repeat;
    z-index: -2;
    filter: brightness(0.6);
}
/* rgba(6, 9, 7, 0.4) 0%, rgba(6, 9, 7, 1
linear-gradient(180deg, rgba(84, 84, 84, 0.8) 0%, rgba(6, 9, 7, 1) 100%), */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-main) 100%);
    z-index: -1;
}

.badge {

    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
}

.badge__whatsapp{
    
    font-size: 20px;
}
.badge__products{
   padding-top: 0.6rem;
    font-size: 17px;
    font-weight: 1000;

}
.badge__products-about{
   padding-top: 0.6rem;
font-size: 20px;
}
.nav-btn{
    margin-top: 10px;
    padding: 0.6rem;
}

.location{
    width: 70%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.location:hover{
    transform: scale(1.05);
}
.badge__gallery{
padding-top: 0.6rem;
    font-size: 17px;
    font-weight: 1000;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.solid-text {
color: #176017;
    text-shadow: -1px -1px 0 var(--text-main), 1px -1px 0 var(--text-main), -1px 1px 0 var(--text-main), 1px 1px 0 var(--text-main);
}

.outline-text {
    font-size: 70px;
    color: transparent;
   
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-main);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Historia Section */
.historia {
    padding: 8rem 0;
    background-color: var(--bg-main);
}

.historia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-subtitle {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.section-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: gap 0.3s ease;
}

.link-arrow:hover {
    gap: 0.75rem;
}

.historia-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.historia-image {
    width: 100%;
    height: 600px;
    /* Placeholder background styling, replace with actual image */
    background: url('../images/home/image4.webp') center/cover no-repeat;
    border-radius: 20px;
}

.quote-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(10, 15, 12, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 12px;
}

.quote-text {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    text-align: center;
}

.quote-author {
    text-align: center;
    font-size: 0.75rem;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Features Section */
.features {
    padding: 4rem 0 8rem;
    background-color: var(--bg-main);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 215, 96, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(30, 215, 96, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(30, 215, 96, 0.2);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 0 0 8rem;
    background-color: var(--bg-main);
}

.cta-card {
    background: radial-gradient(circle at center, rgba(15, 23, 18, 1) 0%, rgba(10, 15, 12, 1) 100%);
    border: 1px solid rgba(30, 215, 96, 0.1);
    border-radius: 24px;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(30, 215, 96, 0.15), transparent 70%);
    pointer-events: none;
}

.cta-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-card p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-desc {
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 300px;
    font-size: 0.9rem;
}

.footer-heading {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-main);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 1rem;
}

.footer-links a, .footer-contact li {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact i {
    font-size: 1.1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.coordinates {
    color: var(--text-main);
}

/* Responsive Design */
@media (max-width: 992px) {
    .historia-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1.5rem 2rem;
    }
    
    .nav-links, .nav-btn {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .cta-actions {
        margin-bottom: 35px;
        flex-direction: column;
    }
    .location{
        
        width: 100%;
    }
    
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media(max-width: 465px){
    .hero{
        margin-top: -30px;
    }
   .solid-text{
    font-size: 50px;
   }
    .nav-links{
        font-size: 12px;
    }
    .historia-image{
        background-position: center;
    }
}
