:root {
    --bg-dark: #121212;
    --bg-card: #1A1A1A;
    --primary: #F28C28;
    --primary-hover: #e07b1a;
    --text-white: #f5eedc;
    --text-muted: #A0A0A0;
    --whatsapp: #25D366;
    --font-main: 'Montserrat', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-wrap: break-word;
    /* Prevents text overflow */
    word-wrap: break-word;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Utilities */
h1,
h2,
h3 {
    font-weight: 800;
    text-transform: none;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #000 !important;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    display: inline-block;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(242, 140, 40, 0.2);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 140, 40, 0.3);
}

.btn-primary.large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-whatsapp {
    background-color: transparent;
    color: var(--whatsapp);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--whatsapp);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
}

.btn-outline {
    border: 2px solid var(--text-white);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.underline {
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    margin: 0 auto;
}

/* Top Bar */
.top-bar {
    background-color: #0c0c0c;
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: none;
}

.top-bar .contact-info {
    display: flex;
    gap: 2rem;
}

.top-bar .social-mini {
    display: flex;
    gap: 1rem;
}

.top-bar i {
    color: var(--primary);
    margin-right: 5px;
}

/* Navbar */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 40px;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    height: 70px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: none;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 40px;
    /* Reduced height for navbar */
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    height: 35px;
    /* Even smaller logo on scroll */
}

.footer .logo img {
    height: 150px;
    margin-bottom: 1rem;
    width: auto;
    /* Ensure aspect ratio */
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-white);
}

.nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    padding: 2rem;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    padding-top: 140px;
    padding-bottom: 100px;
    max-width: none;
    width: 100%;
}

.hero-content {
    max-width: 700px;
}

.badge {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-image img {
    width: 100%;
    display: block;
    transform: scale(1.05);
    transition: var(--transition);
}

.hero-image:hover img {
    transform: scale(1);
}

.glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 100px rgba(242, 140, 40, 0.1);
    pointer-events: none;
}

/* Products Section */
.products {
    padding: 100px 0;
    background-color: #161616;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(242, 140, 40, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-img {
    aspect-ratio: 1 / 1;
    width: 100%;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    color: var(--text-white);
}

.product-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Audience Section */
.audience {
    padding: 100px 0;
}

.audience-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 100%;
    /* Ensure it doesn't overflow parent */
}

.audience-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.audience-text p {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.audience-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.audience-list i {
    color: var(--primary);
    font-size: 1.2rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.audience-item {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.audience-item i {
    font-size: 2.5rem;
    color: var(--primary);
    display: block;
    margin-bottom: 1rem;
}

.audience-item span {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.audience-item:hover {
    background-color: var(--primary);
    color: #000;
}

.audience-item:hover i {
    color: #000;
}

/* Differentiators */
.differentiators {
    padding: 100px 0;
    background-color: #161616;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.diff-card {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--bg-dark);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(242, 140, 40, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.diff-card h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.diff-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.diff-card:hover {
    background-color: var(--bg-card);
    transform: translateY(-5px);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, #1A1A1A 0%, #000000 100%);
    padding: 5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(242, 140, 40, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background-color: #000;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.footer-info p {
    margin: 1.5rem 0;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: var(--primary);
    color: #000;
}

.footer-contact h3,
.footer-hours h3 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--primary);
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-hours p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom span {
    color: var(--primary);
    font-weight: 700;
    margin-left: 10px;
}

/* Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hero-content.reveal-on-scroll {
    transform: translateX(-40px);
}

.hero-image.reveal-on-scroll {
    transform: translateX(40px);
}

.hero-content.revealed,
.hero-image.revealed {
    opacity: 1;
    transform: translate(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    /* Global Mobile Fixes */
    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }

    * {
        box-sizing: border-box !important;
    }

    .container {
        padding-left: 1.2rem !important;
        padding-right: 1.2rem !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    /* Top Bar */
    .top-bar {
        display: none !important;
    }

    /* Navbar Mobile */
    .navbar {
        top: 0 !important;
        height: 65px !important;
        width: 100% !important;
        position: fixed !important;
    }

    .navbar .container {
        padding-left: 1.2rem !important;
        padding-right: 1.2rem !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 1rem !important;
    }

    /* Logo Mobile */
    .logo {
        max-width: 55% !important;
        flex-shrink: 0 !important;
    }

    .logo img {
        height: 26px !important;
        width: auto !important;
        max-width: 100% !important;
    }

    /* Menu Toggle - FORCE VISIBILITY */
    .menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.6rem !important;
        color: #f5eedc !important;
        cursor: pointer !important;
        z-index: 1002 !important;
        padding: 0.6rem !important;
        min-width: 40px !important;
        min-height: 40px !important;
        flex-shrink: 0 !important;
        background: rgba(242, 140, 40, 0.1) !important;
        border-radius: 4px !important;
    }

    .nav-links {
        display: none !important;
    }

    .nav-links.active {
        display: flex !important;
        flex-direction: column !important;
        position: absolute !important;
        top: 65px !important;
        left: 0 !important;
        width: 100% !important;
        background-color: #121212 !important;
        padding: 2rem !important;
        border-bottom: 2px solid #F28C28 !important;
        z-index: 999 !important;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 100vh !important;
        height: auto !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .hero .container {
        padding: 100px 1.2rem 50px 1.2rem !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .hero-content {
        text-align: left !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .hero h1 {
        font-size: 1.5rem !important;
        line-height: 1.35 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        margin-bottom: 1rem !important;
        max-width: 100% !important;
    }

    .hero h1 span {
        display: inline !important;
    }

    .hero p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
        word-wrap: break-word !important;
        max-width: 100% !important;
    }

    /* CTA Buttons Mobile */
    .hero-ctas {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-ctas a {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.85rem 0.8rem !important;
        font-size: 0.85rem !important;
        text-align: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        white-space: nowrap !important;
        border-radius: 4px !important;
    }

    .btn-primary {
        padding: 0.85rem 0.8rem !important;
    }

    .btn-whatsapp {
        padding: 0.85rem 0.8rem !important;
        gap: 0.4rem !important;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 1.75rem !important;
    }

    /* Audience Section */
    .audience-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .audience-text,
    .audience-visual {
        width: 100% !important;
        max-width: 100% !important;
    }

    .audience-text h2 {
        font-size: 1.75rem !important;
    }

    .audience-visual {
        order: 2 !important;
    }

    .audience-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .audience-item {
        padding: 2rem 1.5rem !important;
        margin: 0 !important;
    }

    .audience-item i {
        font-size: 2.2rem !important;
        margin-bottom: 0.8rem !important;
    }

    .audience-item span {
        font-size: 0.8rem !important;
    }

    /* Differentiators */
    .diff-grid {
        grid-template-columns: 1fr !important;
    }

    /* Footer */
    .footer {
        padding: 50px 0 30px !important;
    }

    .footer .logo {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }

    .footer .logo img {
        height: auto !important;
        width: 220px !important;
        max-width: 80% !important;
        margin-bottom: 1.5rem !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        text-align: center !important;
    }

    .footer-info,
    .footer-contact,
    .footer-hours {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .footer-contact li {
        justify-content: center !important;
    }

    .social-links {
        justify-content: center !important;
    }

    /* CTA Box */
    .cta-box {
        padding: 2.5rem 1.2rem !important;
    }

    .cta-box h2 {
        font-size: 1.65rem !important;
        line-height: 1.3 !important;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-float span {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: var(--transition);
    opacity: 0;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #20bd5a;
    color: #fff;
}

.whatsapp-float:hover span {
    max-width: 150px;
    opacity: 1;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 15px;
        width: 60px;
        height: 60px;
        justify-content: center;
        border-radius: 50%;
    }

    .whatsapp-float span {
        display: none;
    }
}