/* Variables y configuración base */
:root {
    --primary-color: #0d4f29;
    --secondary-color: #5cb85c;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* Hero Section */
.product-hero {
    position: relative;
    min-height: 100vh;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../productos/hero1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 79, 41, 0.95) 0%, rgba(13, 79, 41, 0.85) 100%);
    z-index: 2;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100px 100px;
    }
}

.product-hero .container {
    position: relative;
    z-index: 3;
}

.badge-product {
    background: rgba(92, 184, 92, 0.3);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    border: 2px solid var(--secondary-color);
}

.product-hero h1 {
    font-size: 5rem;
    line-height: 1.1;
}

.product-hero h1 sup {
    font-size: 2rem;
}

.text-accent {
    color: var(--secondary-color) !important;
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.85);
}

.product-visual {
    position: relative;
    height: 500px;
}

.floating-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: rgba(92, 184, 92, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    border: 3px solid rgba(92, 184, 92, 0.4);
}

.floating-element i {
    font-size: 120px;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes float {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: bounce 2s infinite;
    color: white;
    opacity: 0.7;
    z-index: 3;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Features Section */
.features-section {
    background: white;
}

.feature-card {
    padding: 40px 30px;
    height: 100%;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 35px;
    color: white;
}

/* Application Section */
.application-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.percentage-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(13, 79, 41, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.percentage-number {
    font-size: 6rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.percentage-symbol {
    font-size: 3rem;
    font-weight: 700;
}

.percentage-label {
    display: block;
    font-size: 1.2rem;
    margin-top: 15px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.application-steps {
    margin-top: 40px;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    padding: 25px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

/* Safety Section */
.safety-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.safety-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    color: white;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.4);
}

.safety-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.safety-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    font-size: 1.1rem;
}

.safety-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Support Section */
.support-section {
    position: relative;
    overflow: hidden;
    color: white !important;
}

.support-section h2,
.support-section p {
    color: white !important;
}

.bg-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
}

.support-icon-large {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    margin: 0 auto;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.text-yellow {
    color: #ffcc00 !important;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(33, 37, 41, 0.7), rgba(33, 37, 41, 0.7)), url('../images/dark_wood_overlay.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    color: white !important;
}

.address-info {
    padding-top: 40px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

/* Buttons */
.btn-lg {
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(13, 79, 41, 0.4);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.btn-success {
    background: var(--secondary-color);
    border: none;
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(92, 184, 92, 0.4);
    background: var(--primary-color);
}

.btn-outline-primary {
    border: 2px solid currentColor;
}

.btn-outline-primary:hover {
    transform: translateY(-3px);
}

.btn-outline-light {
    border: 2px solid white;
}

.btn-outline-light:hover {
    transform: translateY(-3px);
    background: white;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 991px) {
    .product-hero h1 {
        font-size: 3.5rem;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .safety-card,
    .presentation-card {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .product-hero h1 {
        font-size: 2.5rem;
    }

    .percentage-number {
        font-size: 4rem;
    }

    .feature-card {
        margin-bottom: 20px;
    }

    .floating-element {
        width: 200px;
        height: 200px;
    }

    .floating-element i {
        font-size: 80px;
    }
}

.lead {
    color: #fc0;
}



/*********************** INGEPOL 500 ***********************/
/*********************** INGEPOL 500 ***********************/
/*********************** INGEPOL 500 ***********************/
/*********************** INGEPOL 500 ***********************/
/*********************** INGEPOL 500 ***********************/
/* --- ESTILOS LANDING INGEPOL 500 --- */
.ilp500-wrapper {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    overflow-x: hidden;
    --ilp500-primary: #0d4f29;
    /* Verde Ingeber */
    --ilp500-secondary: #198754;
    --ilp500-accent: #ffc107;
    /* Amarillo para alertas/FDA */
    --ilp500-text-light: #f8f9fa;
}

/* UTILIDADES */
.ilp500-text-justify {
    text-align: justify;
}

.ilp500-section-padding {
    padding: 100px 0;
}

/* HERO SECTION */
.ilp500-hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-color: var(--ilp500-primary);
}

.ilp500-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    /* IMAGEN 1: HERO BACKGROUND */
    background-image: url('../productos/hero2.webp');
}

.ilp500-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(13, 79, 41, 0.9), rgba(13, 79, 41, 0.7));
    z-index: 2;
}

.ilp500-hero-content {
    position: relative;
    z-index: 3;
    padding: 20px;
}

.ilp500-title {
    font-size: 4.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    color: white;
}

.ilp500-nav-btn {
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
    padding: 12px 30px;
    margin: 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.ilp500-nav-btn:hover {
    background-color: white;
    color: var(--ilp500-primary);
    transform: translateY(-5px);
}

/* CARDS DE PROPIEDADES */
.ilp500-prop-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-left: 5px solid var(--ilp500-secondary);
    transition: transform 0.3s;
}

.ilp500-prop-card:hover {
    transform: translateY(-5px);
}

/* SECCION USOS CON BACKGROUND */
.ilp500-bg-section {
    position: relative;
    color: white;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    /* IMAGEN 3: USOS BACKGROUND */
    background-image: url('https://placehold.co/1920x800/222/white?text=Fondo+Industrial');
}

.ilp500-bg-overlay-dark {
    background-color: rgba(0, 0, 0, 0.75);
    padding: 100px 0;
}

#ilp500-uso h2 {
    color: var(--light-color);
}

#ilp500-uso h3 {
    color: var(--secondary-color);
}

/* PRESENTACION CIRCULOS */
.ilp500-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--ilp500-primary);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem auto;
    border: 5px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* CONTENT IMAGE STYLE */
.ilp500-content-img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    /* IMAGEN 2: CONTENIDO DESCRIPCION */
}

/* FOOTER SIMPLE */
.ilp500-footer-div {
    background-color: #e9ecef;
    padding: 40px 0;
    border-top: 1px solid #dee2e6;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .ilp500-title {
        font-size: 2.8rem;
        color: white;
    }

    .ilp500-section-padding {
        padding: 60px 0;
    }
}



/******************** PYRITERM ******************/
/******************** PYRITERM ******************/
/******************** PYRITERM ******************/
/******************** PYRITERM ******************/
/******************** PYRITERM ******************/
/* --- ESTILOS LANDING PYRITERM --- */
.pyr-wrapper {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    overflow-x: hidden;
    --pyr-primary: #0d4f29;
    /* Verde Corporativo */
    --pyr-dark: #08331a;
    --pyr-warning: #ffc107;
    --pyr-danger: #dc3545;
    --pyr-light: #f8f9fa;
}

/* UTILIDADES */
.pyr-text-justify {
    text-align: justify;
}

.pyr-section-padding {
    padding: 100px 0;
}

/* HERO SECTION */
.pyr-hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-color: var(--pyr-primary);
}

.pyr-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    /* IMAGEN 1: HERO BACKGROUND */
}

.pyr-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(13, 79, 41, 0.75), rgba(8, 51, 26, 0.8));
    z-index: 2;
}

.pyr-hero-content {
    position: relative;
    z-index: 3;
    padding: 20px;
}

.pyr-title {
    font-size: 5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    color: white;
}

.pyr-subtitle-label {
    background: var(--pyr-danger);
    color: white;
    padding: 8px 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: inline-block;
}

.pyr-nav-btn {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 25px;
    margin: 8px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.pyr-nav-btn:hover {
    background: var(--pyr-warning);
    border-color: var(--pyr-warning);
    color: #000;
    transform: translateY(-3px);
}

/* CARDS ACCIÓN TRIPLE */
.pyr-action-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    border-top: 5px solid var(--pyr-primary);
    transition: transform 0.3s;
}

.pyr-action-card:hover {
    transform: translateY(-10px);
}

.pyr-icon-circle {
    width: 80px;
    height: 80px;
    background: var(--pyr-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--pyr-primary);
    margin: 0 auto 1.5rem auto;
}

/* SECCION DOSIS (DARK) */
.pyr-bg-dark-section {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: white;
    /* IMAGEN 3: BACKGROUND DOSIS */
}

.pyr-dark-overlay {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 100px 0;
}

/* LISTA DE PLAGAS */
.pyr-pest-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pyr-pest-list i {
    color: var(--pyr-danger);
    margin-right: 10px;
}

/* ALERTA ANTIDOTO */
.pyr-antidote-box {
    background-color: #fff3cd;
    border: 2px solid #ffecb5;
    color: #664d03;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
}

.pyr-antidote-box strong {
    color: #d63384;
    text-transform: uppercase;
}

/* PRESENTACION */
.pyr-presentation-box {
    border: 3px dashed var(--pyr-primary);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    background: #fdfdfd;
}

/* FOOTER */
.pyr-footer {
    background-color: #212529;
    color: #adb5bd;
    padding: 40px 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .pyr-title {
        font-size: 3rem;
        color: white;
    }

    .pyr-section-padding {
        padding: 60px 0;
    }
}



/************************ PRINTAL ACQ ***********************/
/************************ PRINTAL ACQ ***********************/
/************************ PRINTAL ACQ ***********************/
/************************ PRINTAL ACQ ***********************/
/************************ PRINTAL ACQ ***********************/
/* --- ESTILOS LANDING PRINTAL ACQ --- */
.acq-wrapper {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    overflow-x: hidden;
    --acq-primary: #0d4f29;
    /* Verde Corporativo */
    --acq-copper: #b87333;
    /* Tono Cobre (Referencia al ingrediente activo) */
    --acq-light: #f0f2f5;
    --acq-dark: #212529;
}

/* UTILIDADES */
.acq-text-justify {
    text-align: justify;
}

.acq-section-padding {
    padding: 100px 0;
}

/* HERO SECTION */
.acq-hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-color: var(--acq-primary);
}

.acq-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    /* IMAGEN 1 */
}

.acq-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(13, 79, 41, 0.85), rgba(184, 115, 51, 0.35));
    /* Mezcla verde/cobre */
    z-index: 2;
}

.acq-hero-content {
    position: relative;
    z-index: 3;
    padding: 20px;
}

.acq-title {
    font-size: 4.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    color: white;
}

.acq-btn-outline {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    margin: 10px;
    border-radius: 0;
    /* Botones cuadrados más industriales */
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.acq-btn-outline:hover {
    background: white;
    color: var(--acq-primary);
}

/* CARDS DE PROPIEDADES */
.acq-spec-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-bottom: 4px solid var(--acq-copper);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s;
}

.acq-spec-card:hover {
    transform: translateY(-5px);
}

/* SECCION USOS (Parallax feel) */
.acq-uses-section {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: white;
    /* IMAGEN 3 */
}

.acq-uses-overlay {
    background-color: rgba(13, 79, 41, 0.9);
    padding: 100px 0;
}

/* LISTA USOS */
.acq-check-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.acq-check-list i {
    color: var(--acq-copper);
    margin-right: 10px;
    font-weight: bold;
}

/* TAGS */
.acq-tag {
    display: inline-block;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* RECOMENDACION BOX */
.acq-tech-note {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 20px;
    margin-top: 20px;
    color: #856404;
}

/* PRESENTACION */
.acq-pack-circle {
    width: 140px;
    height: 140px;
    border: 3px solid var(--acq-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: white;
    color: var(--acq-primary);
    font-weight: bold;
}

/* FOOTER */
.acq-footer {
    background-color: var(--acq-dark);
    color: #adb5bd;
    padding: 50px 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .acq-title {
        font-size: 2.8rem;
        color: white;
    }

    .acq-section-padding {
        padding: 60px 0;
    }
}