/*
Theme Name: Nauka Comercial SRL
Theme URI: https://naukacomercialsrl.com
Author: Victor Disla
Author URI: https://www.dislanet.com
Description: Tema de una sola página para Nauka Comercial SRL, empresa dedicada a la comercialización de productos, materias primas y soluciones para diferentes sectores a nivel local e internacional.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: nauka-comercial-srl
*/



        /* =========================================================
           VARIABLES
        ========================================================= */

        :root {
            --nauka-dark: #06231a;
            --nauka-green: #0e8341;
            --nauka-green-2: #0a6633;
            --nauka-gold: #2fa85e;
            --nauka-gold-light: #8de6ac;

            --text-dark: #10201e;
            --text: #586562;
            --light: #f4f9f6;
            --border: #e2ebe5;
            --white: #ffffff;
        }

        /* =========================================================
           BASE
        ========================================================= */

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "DM Sans", sans-serif;
            color: var(--text);
            background: #fff;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: "Manrope", sans-serif;
            color: var(--text-dark);
            font-weight: 700;
        }

        a {
            text-decoration: none;
        }

        .section-padding {
            padding: 110px 0;
        }

        .section-label {
            display: inline-block;
            color: var(--nauka-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 12px;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: clamp(36px, 4vw, 54px);
            letter-spacing: -2px;
            margin-bottom: 20px;
        }

        .section-description {
            max-width: 650px;
            font-size: 16px;
            line-height: 1.8;
        }

        /* =========================================================
           NAVBAR
        ========================================================= */

        .navbar {
            position: absolute;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 34px 0;
            transition: all .3s ease;
        }

        .navbar.scrolled {
            position: fixed;
            background: rgba(6,35,26,.95);
            backdrop-filter: blur(15px);
            padding: 16px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,.08);
        }

        .navbar > .container {
            flex-wrap: wrap;
        }

        .navbar-brand {
            color: #fff !important;
            font-family: "Manrope", sans-serif;
            font-size: 25px;
            font-weight: 800;
            letter-spacing: -1px;
            display: flex;
            align-items: center;
            flex-shrink: 1;
            min-width: 0;
        }

        .navbar-brand .brand-logo img {
            max-width: 100%;
        }

        .navbar-brand span {
            color: var(--nauka-gold);
        }

        .brand-logo {
            display: inline-flex;
            align-items: center;
            background: #fff;
            border-radius: 14px;
            padding: 10px 22px;
            box-shadow: 0 10px 26px rgba(0,0,0,.22);
            transition: all .3s ease;
        }

        .brand-logo img {
            height: 62px;
            width: auto;
            display: block;
            transition: height .3s ease;
        }

        .navbar.scrolled .brand-logo {
            padding: 7px 16px;
        }

        .navbar.scrolled .brand-logo img {
            height: 44px;
        }

        .navbar-nav {
            gap: 8px;
        }

        .navbar-nav .nav-link {
            color: rgba(255,255,255,.78);
            font-size: 14px;
            font-weight: 500;
            padding: 10px 16px !important;
            transition: .3s;
        }

        .navbar-nav .nav-link:hover {
            color: #fff;
        }

        .btn-nav {
            border: 1px solid rgba(255,255,255,.3);
            color: #fff !important;
            border-radius: 50px;
            padding: 9px 20px !important;
        }

        .btn-nav:hover {
            background: #fff;
            color: var(--nauka-green) !important;
        }

        /* =========================================================
           HAMBURGUESA (MOBILE)
        ========================================================= */

        .nauka-toggler {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            overflow: hidden;
            width: 48px;
            height: 48px;
            padding: 0;
            border: 1px solid rgba(255,255,255,.18);
            border-radius: 50%;
            background: rgba(255,255,255,.08);
            backdrop-filter: blur(6px);
            line-height: 0;
            box-shadow: 0 6px 18px rgba(0,0,0,.18);
            transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, transform .2s ease;
        }

        .nauka-toggler:hover {
            background: var(--nauka-gold);
            border-color: var(--nauka-gold);
            transform: translateY(-1px);
        }

        .nauka-toggler:hover .nauka-toggler-inner,
        .nauka-toggler:hover .nauka-toggler-inner::before,
        .nauka-toggler:hover .nauka-toggler-inner::after {
            background: var(--nauka-dark);
        }

        .nauka-toggler:active {
            transform: translateY(0) scale(.94);
        }

        .nauka-toggler:focus,
        .nauka-toggler:focus-visible {
            box-shadow: 0 0 0 3px rgba(45,168,94,.35) !important;
            outline: none;
        }

        .nauka-toggler-box {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: block;
            width: 20px;
            height: 14px;
        }

        .nauka-toggler-inner,
        .nauka-toggler-inner::before,
        .nauka-toggler-inner::after {
            position: absolute;
            left: 0;
            width: 20px;
            height: 2px;
            border-radius: 2px;
            background: #fff;
            transition: transform .3s ease, opacity .2s ease, top .3s ease;
        }

        .nauka-toggler-inner {
            top: 6px;
        }

        .nauka-toggler-inner::before {
            content: "";
            top: -6px;
        }

        .nauka-toggler-inner::after {
            content: "";
            top: 6px;
        }

        .nauka-toggler.active .nauka-toggler-inner {
            background: transparent;
        }

        .nauka-toggler.active .nauka-toggler-inner::before {
            top: 0;
            transform: rotate(45deg);
            background: var(--nauka-gold-light);
        }

        .nauka-toggler.active .nauka-toggler-inner::after {
            top: 0;
            transform: rotate(-45deg);
            background: var(--nauka-gold-light);
        }

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

        .hero {
            position: relative;
        }

        .hero-slider,
        .hero-slider .carousel-inner {
            min-height: 100vh;
        }

        .hero-slide {
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            background-color: var(--nauka-dark);
            background-size: cover;
            background-position: center;
        }

        .hero-slide.active {
            display: flex;
            align-items: center;
        }

        .hero-slide::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;

            background: linear-gradient(
                90deg,
                rgba(4,26,17,.98) 0%,
                rgba(9,46,29,.92) 48%,
                rgba(9,46,29,.55) 100%
            );
        }

        .hero-slide::after {
            content: "";
            position: absolute;
            width: 700px;
            height: 700px;
            border: 1px solid rgba(255,255,255,.06);
            border-radius: 50%;
            right: -300px;
            top: 5%;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding-top: 90px;
        }

        /* ---- Indicadores (puntos) ---- */

        .hero-indicators {
            z-index: 3;
            margin-bottom: 34px;
        }

        .hero-indicators [data-bs-target] {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background-color: rgba(255,255,255,.4);
            border: 0;
            opacity: 1;
            margin: 0 5px;
            transition: .3s;
        }

        .hero-indicators [data-bs-target].active {
            background-color: var(--nauka-gold-light);
            width: 26px;
            border-radius: 5px;
        }

        /* ---- Flechas ---- */

        .hero-slider .carousel-control-prev,
        .hero-slider .carousel-control-next {
            width: auto;
            z-index: 3;
            opacity: 1;
        }

        .hero-slider .carousel-control-prev {
            left: 24px;
        }

        .hero-slider .carousel-control-next {
            right: 24px;
        }

        .hero-arrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,.3);
            background: rgba(255,255,255,.06);
            backdrop-filter: blur(6px);
            color: #fff;
            font-size: 18px;
            transition: .3s;
        }

        .hero-slider .carousel-control-prev:hover .hero-arrow,
        .hero-slider .carousel-control-next:hover .hero-arrow {
            background: var(--nauka-gold);
            border-color: var(--nauka-gold);
            color: var(--nauka-dark);
        }

        .hero-eyebrow {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--nauka-gold-light);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .hero-eyebrow::before {
            content: "";
            width: 40px;
            height: 1px;
            background: var(--nauka-gold);
        }

        .hero h1 {
            color: #fff;
            font-size: clamp(48px, 6vw, 78px);
            letter-spacing: -4px;
            line-height: 1.05;
            max-width: 850px;
            margin-bottom: 28px;
        }

        .hero h1 span {
            color: var(--nauka-gold-light);
        }

        .hero-description {
            max-width: 650px;
            color: rgba(255,255,255,.72);
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 38px;
        }

        .btn-nauka {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            transition: .3s;
        }

        .btn-gold {
            background: var(--nauka-gold);
            color: var(--nauka-dark);
        }

        .btn-gold:hover {
            background: var(--nauka-gold-light);
            color: var(--nauka-dark);
            transform: translateY(-2px);
        }

        .btn-outline-light-custom {
            border: 1px solid rgba(255,255,255,.3);
            color: #fff;
        }

        .btn-outline-light-custom:hover {
            background: #fff;
            color: var(--nauka-green);
        }

        /* =========================================================
           STATS
        ========================================================= */

        .stats {
            background: var(--nauka-green);
        }

        .stat-item {
            padding: 30px 25px;
            border-right: 1px solid rgba(255,255,255,.1);
        }

        .stat-item:last-child {
            border-right: 0;
        }

        .stat-icon {
            font-size: 25px;
            color: var(--nauka-gold);
            margin-bottom: 12px;
        }

        .stat-item h5 {
            color: #fff;
            font-size: 16px;
            margin-bottom: 4px;
        }

        .stat-item p {
            color: rgba(255,255,255,.5);
            font-size: 13px;
            margin: 0;
        }

        /* =========================================================
           ABOUT
        ========================================================= */

        .about {
            background: var(--light);
        }

        .about-image {
            min-height: 530px;
            position: relative;

            background:
                linear-gradient(
                    rgba(6,35,26,.15),
                    rgba(6,35,26,.25)
                ),
                url("https://images.unsplash.com/photo-1521791055366-0d553872125f?auto=format&fit=crop&w=1200&q=85")
                center / cover;
        }

        .about-floating {
            position: absolute;
            right: -25px;
            bottom: 30px;
            background: #fff;
            padding: 25px;
            width: 230px;
            box-shadow: 0 20px 50px rgba(0,0,0,.12);
        }

        .about-floating strong {
            display: block;
            color: var(--nauka-green);
            font-family: "Manrope";
            font-size: 27px;
            margin-bottom: 4px;
        }

        .about-floating span {
            font-size: 13px;
        }

        .about-list {
            list-style: none;
            padding: 0;
            margin: 30px 0 0;
        }

        .about-list li {
            display: flex;
            gap: 12px;
            align-items: center;
            color: var(--text-dark);
            font-weight: 600;
            margin-bottom: 15px;
        }

        .check {
            width: 24px;
            height: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--nauka-green);
            color: #fff;
            font-size: 12px;
        }

        /* =========================================================
           PRODUCTS
        ========================================================= */

        .product-card {
            height: 100%;
            padding: 35px;
            border: 1px solid var(--border);
            background: #fff;
            transition: all .35s ease;
            position: relative;
            overflow: hidden;
        }

        .product-card::after {
            content: "";
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(14,131,65,.07);
            right: -40px;
            bottom: -40px;
            transition: .3s;
        }

        .product-card:hover {
            transform: translateY(-8px);
            border-color: transparent;
            box-shadow: 0 25px 60px rgba(6,35,26,.1);
        }

        .product-card:hover::after {
            transform: scale(2);
        }

        .product-number {
            color: var(--nauka-gold);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 2px;
            margin-bottom: 40px;
        }

        .product-icon {
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--light);
            color: var(--nauka-green);
            border-radius: 50%;
            font-size: 22px;
            margin-bottom: 22px;
        }

        .product-card h3 {
            font-size: 21px;
            margin-bottom: 12px;
        }

        .product-card p {
            font-size: 14px;
            line-height: 1.7;
            margin: 0;
        }

        /* =========================================================
           GLOBAL
        ========================================================= */

        .global {
            background: var(--nauka-green);
            overflow: hidden;
        }

        .global h2 {
            color: #fff;
            font-size: clamp(36px, 4vw, 54px);
            letter-spacing: -2px;
        }

        .global p {
            color: rgba(255,255,255,.65);
            line-height: 1.8;
        }

        .global-image {
            height: 450px;
            position: relative;

            background:
                linear-gradient(
                    rgba(6,35,26,.25),
                    rgba(6,35,26,.5)
                ),
                url("https://images.unsplash.com/photo-1524666041070-9a876a5e8a4b?auto=format&fit=crop&w=1400&q=85")
                center / cover;
        }

        .global-badge {
            position: absolute;
            left: 25px;
            bottom: 25px;
            padding: 18px 22px;
            background: rgba(6,35,26,.85);
            backdrop-filter: blur(10px);
            color: #fff;
        }

        .global-badge strong {
            display: block;
            color: var(--nauka-gold-light);
            font-size: 18px;
        }

        .global-badge span {
            color: rgba(255,255,255,.6);
            font-size: 12px;
        }

        /* =========================================================
           CTA
        ========================================================= */

        .cta {
            background: var(--light);
        }

        .cta-box {
            background: #fff;
            border: 1px solid var(--border);
            padding: 65px;
        }

        .cta-box h2 {
            font-size: clamp(32px, 4vw, 48px);
            letter-spacing: -2px;
        }

        .cta-box p {
            max-width: 650px;
            margin-top: 15px;
            margin-bottom: 30px;
        }

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

        footer {
            background: var(--nauka-dark);
            color: #fff;
            padding: 70px 0 30px;
        }

        .footer-logo {
            color: #fff;
            font-family: "Manrope";
            font-weight: 800;
            font-size: 26px;
            margin-bottom: 20px;
        }

        .footer-logo span {
            color: var(--nauka-gold);
        }

        .footer-logo .brand-logo {
            box-shadow: none;
            padding: 8px 18px;
        }

        .footer-logo .brand-logo img {
            height: 46px;
        }

        .footer-description {
            max-width: 420px;
            color: rgba(255,255,255,.5);
            font-size: 14px;
            line-height: 1.8;
        }

        .footer-title {
            color: #fff;
            font-weight: 700;
            margin-bottom: 18px;
        }

        .footer-info {
            color: rgba(255,255,255,.55);
            font-size: 14px;
            margin-bottom: 8px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,.08);
            margin-top: 50px;
            padding-top: 25px;
            color: rgba(255,255,255,.35);
            font-size: 12px;
        }

        .footer-credit {
            margin-top: 14px;
            padding-top: 14px;
            border-top: 1px solid rgba(255,255,255,.06);
            color: rgba(255,255,255,.3);
            font-size: 12px;
            text-align: center;
        }

        .footer-credit a {
            color: var(--nauka-gold);
            font-weight: 600;
            transition: .3s;
        }

        .footer-credit a:hover {
            color: var(--nauka-gold-light);
        }

        /* =========================================================
           MOBILE
        ========================================================= */

        @media (max-width: 991px) {

            .navbar {
                background: rgba(6,35,26,.95);
                padding: 18px 0;
            }

            .brand-logo img {
                height: 46px;
            }

            .navbar-collapse {
                background: var(--nauka-dark);
                border: 1px solid rgba(255,255,255,.08);
                border-radius: 16px;
                padding: 10px;
                margin-top: 16px;
                box-shadow: 0 20px 45px rgba(0,0,0,.35);
                width: 100%;
                flex-basis: 100%;
                max-height: calc(100vh - 120px);
                overflow-y: auto;
            }

            .navbar-nav {
                gap: 2px;
            }

            .navbar-nav .nav-item {
                border-bottom: 1px solid rgba(255,255,255,.07);
            }

            .navbar-nav .nav-item:last-child {
                border-bottom: 0;
            }

            .navbar-nav .nav-link {
                padding: 14px 10px !important;
                width: 100%;
                display: block;
            }

            .navbar-nav .nav-item.ms-lg-2 {
                margin-top: 10px;
            }

            .navbar-nav .btn-nav {
                display: block;
                text-align: center;
                border-radius: 12px;
                background: var(--nauka-green);
                border-color: var(--nauka-green);
            }

            .navbar-nav .btn-nav:hover {
                background: var(--nauka-green-2);
                color: #fff !important;
            }

            .stat-item {
                border-right: 0;
                border-bottom: 1px solid rgba(255,255,255,.1);
            }

            .about-floating {
                right: 20px;
            }

            .global-image {
                margin-top: 30px;
            }
        }

        @media (max-width: 767px) {

            .section-padding {
                padding: 75px 0;
            }

            .hero-slider,
            .hero-slider .carousel-inner,
            .hero-slide {
                min-height: 650px;
            }

            .hero-arrow {
                width: 38px;
                height: 38px;
                font-size: 15px;
            }

            .hero-slider .carousel-control-prev {
                left: 12px;
            }

            .hero-slider .carousel-control-next {
                right: 12px;
            }

            .hero h1 {
                font-size: 48px;
                letter-spacing: -2px;
            }

            .hero-description {
                font-size: 16px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: flex-start;
            }

            .cta-box {
                padding: 40px 25px;
            }

            .about-image {
                min-height: 380px;
            }

            .about-floating {
                width: 200px;
            }

            .global-image {
                height: 320px;
            }
        }

    