/* =========================================================
   ALCON DRONES
   MONITOREO DE SALUD DE CULTIVOS
   CSS PREMIUM
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --crop-green: #84BD00;
    --crop-green-light: #A8D63A;

    --crop-dark: #0B1F2A;
    --crop-blue: #173B57;

    --crop-text: #263746;
    --crop-muted: #687785;

    --crop-bg: #F6F8F8;
    --crop-white: #FFFFFF;

    --crop-border: #E3E9EC;

    --crop-shadow:
        0 15px 40px rgba(11, 31, 42, .08);

    --crop-radius: 18px;

}


/* =========================================================
   GLOBAL
========================================================= */

.crop-container {
    width: min(1180px, calc(100% - 60px));
    margin: 0 auto;
}

.crop-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--crop-green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.crop-eyebrow i {
    font-size: 14px;
}


.crop-section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 55px;
}

.crop-section-header h2 {

    margin: 0 0 15px;
    color: var(--crop-dark);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    font-weight: 800;
}

.crop-section-header p {
    color: var(--crop-muted);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   01. INTRODUCCIÓN
========================================================= */

.crop-intro-section {
    background: #FFFFFF;
    padding: 20px 0;
}

.crop-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;

}

.crop-intro-content h2 {
    color: var(--crop-dark);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.12;
    margin: 0 0 25px;
}

.crop-intro-content h2 span {
    color: var(--crop-green);
}


.crop-intro-content p {
    color: var(--crop-muted);
    line-height: 1.7;
    font-size: 16px;
}


.crop-intro-lead {
    font-size: 18px !important;
}

.crop-intro-features {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 35px;

}


.crop-mini-feature {

    padding: 18px 12px;

    border: 1px solid var(--crop-border);

    border-radius: 14px;

    text-align: center;

    background: #fff;

}


.crop-mini-icon {

    width: 46px;

    height: 46px;

    margin: 0 auto 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(132,189,0,.1);

    color: var(--crop-green);

    font-size: 19px;

}


.crop-mini-feature strong {

    display: block;

    color: var(--crop-dark);

    font-size: 14px;

    margin-bottom: 6px;

}


.crop-mini-feature span {

    display: block;

    color: var(--crop-muted);

    font-size: 12px;

    line-height: 1.4;

}

/* -----------------------------
    IMAGEN
----------------------------- */

.crop-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--crop-radius);
    box-shadow: var(--crop-shadow);
}

.crop-image-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.crop-image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 35px 30px 25px;
    color: #fff;
    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.75)
        );
}

.crop-image-overlay span {
    display: block;
    font-size: 13px;
    color: var(--crop-green-light);
    font-weight: 700;
}

.crop-image-overlay strong {
    font-size: 21px;
}


/* =========================================================
   02. COMPONENTES
========================================================= */

.crop-components-section {

    background: var(--crop-bg);

    padding: 20px 0;

}


.crop-components-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 28px;

}


.crop-component-card {

    position: relative;

    background: #fff;

    border: 1px solid var(--crop-border);

    border-radius: var(--crop-radius);

    padding: 38px 30px 32px;

    box-shadow: 0 8px 25px rgba(0,0,0,.04);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.crop-component-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--crop-shadow);

}


.crop-component-number {

    position: absolute;

    top: 20px;

    right: 20px;

    font-size: 12px;

    font-weight: 800;

    color: var(--crop-green);

}


.crop-component-icon {

    width: 62px;

    height: 62px;

    border-radius: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(132,189,0,.1);

    color: var(--crop-green);

    font-size: 25px;

    margin-bottom: 24px;

}


.crop-component-card h3 {

    color: var(--crop-dark);

    font-size: 22px;

    line-height: 1.25;

    margin-bottom: 15px;

}


.crop-component-card p {

    color: var(--crop-muted);

    line-height: 1.65;

}


.crop-component-card ul {

    list-style: none;

    padding: 0;

    margin: 25px 0 0;

}


.crop-component-card li {

    display: flex;

    gap: 10px;

    margin-bottom: 10px;

    color: var(--crop-text);

    font-size: 14px;

}


.crop-component-card li i {

    color: var(--crop-green);

    margin-top: 3px;

}


/* =========================================================
   03. ANÁLISIS MULTIESPECTRAL
========================================================= */

.crop-analysis-section {

    padding: 20px 0;

    background: #fff;

}


.crop-analysis-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}


.crop-analysis-media {

    position: relative;

}


.crop-analysis-media img {

    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: var(--crop-radius);

    display: block;

}


.crop-analysis-badge {

    position: absolute;

    left: 25px;

    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 12px;

    background: #fff;

    padding: 13px 20px;

    border-radius: 12px;

    box-shadow: var(--crop-shadow);

}


.crop-analysis-badge i {

    color: var(--crop-green);

    font-size: 25px;

}


.crop-analysis-badge strong,
.crop-analysis-badge span {

    display: block;

}


.crop-analysis-badge strong {

    color: var(--crop-dark);

}


.crop-analysis-badge span {

    color: var(--crop-muted);

    font-size: 12px;

}


.crop-analysis-content h2 {

    color: var(--crop-dark);

    font-size: clamp(32px, 4vw, 45px);

    line-height: 1.15;

    margin: 0 0 20px;

}


.crop-analysis-content h2 span {

    color: var(--crop-green);

}


.crop-analysis-content > p {

    color: var(--crop-muted);

    line-height: 1.7;

}


.crop-analysis-list {

    margin-top: 35px;

}


.crop-analysis-list > div {

    display: flex;

    gap: 18px;

    margin-bottom: 25px;

}


.crop-analysis-list > div > i {

    flex: 0 0 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: var(--crop-green);

    background: rgba(132,189,0,.1);

}


.crop-analysis-list strong {

    color: var(--crop-dark);

    font-size: 17px;

}


.crop-analysis-list p {

    margin: 5px 0 0;

    color: var(--crop-muted);

    font-size: 14px;

    line-height: 1.5;

}


/* =========================================================
   04. ANÁLISIS PRODUCTIVO
========================================================= */

.crop-diagnostic-section {

    background: var(--crop-bg);

    padding: 20px 0;

}


.crop-diagnostic-grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 18px;

}


.crop-diagnostic-card {

    text-align: center;

    padding: 30px 18px;

    background: #fff;

    border-radius: 15px;

    border: 1px solid var(--crop-border);

    transition: .3s ease;

}


.crop-diagnostic-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--crop-shadow);

}


.crop-diagnostic-icon {

    width: 60px;

    height: 60px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(132,189,0,.1);

    color: var(--crop-green);

    font-size: 23px;

}


.crop-diagnostic-card h3 {

    color: var(--crop-dark);

    font-size: 17px;

    margin-bottom: 12px;

}


.crop-diagnostic-card p {

    color: var(--crop-muted);

    font-size: 13px;

    line-height: 1.55;

}


/* =========================================================
   05. MAPAS
========================================================= */

.crop-maps-section {

    padding: 20px 0;

    background: #fff;

}


.crop-maps-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.crop-map-card {

    overflow: hidden;

    border-radius: var(--crop-radius);

    background: #fff;

    border: 1px solid var(--crop-border);

    box-shadow: 0 8px 25px rgba(0,0,0,.05);

}


.crop-map-image {

    height: 260px;

    overflow: hidden;

}


.crop-map-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;

}


.crop-map-card:hover img {

    transform: scale(1.05);

}


.crop-map-content {

    padding: 25px;

}


.crop-map-content > span {

    color: var(--crop-green);

    font-size: 12px;

    font-weight: 800;

}


.crop-map-content h3 {

    color: var(--crop-dark);

    font-size: 20px;

    margin: 7px 0 10px;

}


.crop-map-content p {

    color: var(--crop-muted);

    font-size: 14px;

    line-height: 1.6;

    margin: 0;

}


/* =========================================================
   06. DECISIONES
========================================================= */

.crop-decisions-section {

    padding: 30px 0;

    background: var(--crop-dark);

    color: #fff;

}


.crop-decisions-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;

}


.crop-decisions-content h2 {

    color: #fff;

    font-size: clamp(32px, 4vw, 46px);

    line-height: 1.15;

    margin: 0 0 20px;

}


.crop-decisions-content h2 span {

    color: var(--crop-green);

}


.crop-decisions-content > p {

    color: rgba(255,255,255,.75);

    line-height: 1.7;

}


.crop-decision-item {

    display: flex;

    gap: 18px;

    margin-top: 30px;

}


.crop-decision-item > i {

    width: 48px;

    height: 48px;

    flex: 0 0 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(132,189,0,.15);

    color: var(--crop-green);

}


.crop-decision-item strong {

    font-size: 16px;

}


.crop-decision-item p {

    margin: 5px 0 0;

    color: rgba(255,255,255,.65);

    font-size: 14px;

}


.crop-decisions-visual {

    display: flex;

    justify-content: center;

}


.crop-decision-circle {

    width: 330px;

    height: 330px;

    border-radius: 50%;

    border: 2px solid rgba(132,189,0,.4);

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

}


.crop-decision-circle::before {

    content: "";

    position: absolute;

    inset: 30px;

    border-radius: 50%;

    border: 1px dashed rgba(132,189,0,.5);

}


.crop-circle-center {

    width: 150px;

    height: 150px;

    border-radius: 50%;

    background: var(--crop-green);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    position: relative;

    z-index: 2;

    box-shadow: 0 15px 35px rgba(0,0,0,.3);

}


.crop-circle-center i {

    font-size: 28px;

    margin-bottom: 8px;

}


.crop-circle-center strong {

    font-size: 20px;

}


.crop-circle-center span {

    font-size: 13px;

}


/* =========================================================
   07. INFORME
========================================================= */

.crop-report-section {

    padding: 20px 0;

    background: var(--crop-bg);

}


.crop-report-card {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

    background: #fff;

    border: 1px solid var(--crop-border);

    border-radius: 22px;

    padding: 55px;

    box-shadow: var(--crop-shadow);

}


.crop-report-content h2 {

    color: var(--crop-dark);

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.15;

    margin: 0 0 20px;

}


.crop-report-content > p {

    color: var(--crop-muted);

    line-height: 1.7;

}


.crop-report-list {

    margin-top: 30px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

}


.crop-report-list div {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--crop-text);

    font-size: 14px;

}


.crop-report-list i {

    color: var(--crop-green);

}


.crop-report-preview {

    display: flex;

    justify-content: center;

}


.crop-report-sheet {

    width: 300px;

    min-height: 390px;

    padding: 25px;

    background: #fff;

    border: 1px solid #dfe5e8;

    box-shadow: 0 20px 50px rgba(0,0,0,.12);

    transform: rotate(2deg);

}


.crop-report-header {

    display: flex;

    justify-content: space-between;

    padding-bottom: 15px;

    border-bottom: 2px solid var(--crop-green);

}


.crop-report-header span {

    color: var(--crop-dark);

    font-size: 13px;

    font-weight: 800;

}


.crop-report-header small {

    color: var(--crop-muted);

    font-size: 8px;

}


.crop-report-chart {

    height: 140px;

    margin: 25px 0;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #7FBF3F,
            #D9E98B,
            #6A9D40
        );

}


.crop-report-lines {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.crop-report-lines span {

    height: 7px;

    border-radius: 5px;

    background: #e9edef;

}


.crop-report-lines span:nth-child(1) {

    width: 90%;

}


.crop-report-lines span:nth-child(2) {

    width: 75%;

}


.crop-report-lines span:nth-child(3) {

    width: 85%;

}


.crop-report-lines span:nth-child(4) {

    width: 60%;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .crop-intro-grid,
    .crop-analysis-grid,
    .crop-decisions-grid,
    .crop-report-card {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .crop-components-grid {

        grid-template-columns: 1fr;

    }


    .crop-diagnostic-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .crop-maps-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 700px) {

    .crop-container {

        width: min(
            100% - 36px,
            1180px
        );

    }


    .crop-intro-section,
    .crop-analysis-section,
    .crop-maps-section,
    .crop-report-section {

        padding: 30px 0;

    }

    .crop-components-section,
    .crop-diagnostic-section,
    .crop-decisions-section {

        padding: 30px 0;

    }

    .crop-intro-features {

        grid-template-columns: 1fr;

    }

    .crop-diagnostic-grid,
    .crop-maps-grid {

        grid-template-columns: 1fr;

    }

    .crop-image-wrapper img,
    .crop-analysis-media img {
        height: 330px;
    }

    .crop-report-card {
        padding: 30px 22px;
    }


    .crop-report-list {

        grid-template-columns: 1fr;

    }


    .crop-decision-circle {

        width: 260px;

        height: 260px;

    }


    .crop-circle-center {

        width: 125px;

        height: 125px;

    }

}


@media (max-width: 480px) {

    .crop-section-header h2 {

        font-size: 30px;

    }


    .crop-intro-content h2 {

        font-size: 32px;

    }


    .crop-analysis-content h2 {

        font-size: 31px;

    }


    .crop-component-card {

        padding: 30px 22px;

    }


    .crop-map-image {

        height: 220px;

    }

}

/* =========================================================
   DE LOS DATOS A LA ACCIÓN
   VISUAL DATOS → DECISIÓN
   ========================================================= */

.data-decision-visual {
    width: 100%;
    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}


/* =========================================================
   CONTENEDOR PRINCIPAL
   ========================================================= */

.process-orbit {

    width: 390px;
    height: 390px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   ÓRBITAS
   ========================================================= */

.orbit {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


/* Órbita exterior */

.orbit-outer {

    width: 330px;
    height: 330px;

    border: 2px solid rgba(132, 189, 0, 0.55);

    top: 30px;
    left: 30px;
}


/* Órbita interior */

.orbit-inner {

    width: 265px;
    height: 265px;

    border: 1px dashed rgba(132, 189, 0, 0.45);

    top: 62.5px;
    left: 62.5px;
}


/* =========================================================
   CENTRO DATOS → DECISIÓN
   ========================================================= */

.data-decision-center {

    position: absolute;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background: #84BD00;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    z-index: 20;

    box-shadow:
        0 0 0 8px rgba(132, 189, 0, 0.08),
        0 15px 35px rgba(0, 0, 0, 0.20);

    color: #ffffff;
}


/* Icono central */

.center-icon {

    font-size: 32px;

    line-height: 1;

    margin-bottom: 8px;

    color: #ffffff;
}


/* Texto Datos */

.center-title {

    font-size: 20px;

    font-weight: 700;

    line-height: 1.1;
}


/* Texto → Decisión */

.center-arrow {

    margin-top: 4px;

    font-size: 14px;

    font-weight: 500;

    opacity: 0.95;
}


/* =========================================================
   NODOS DEL PROCESO
   ========================================================= */

.process-node {

    position: absolute;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: #21482a;

    border: 2px solid rgba(132, 189, 0, 0.25);

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 15;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   ICONOS
   ========================================================= */

.process-node-icon {

    color: #84BD00;

    font-size: 22px;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* Ocultamos el texto dentro del nodo.
   El significado lo representa el icono.
   Si quieres mostrar texto, puedes habilitarlo. */

.process-node span {

    position: absolute;

    white-space: nowrap;

    opacity: 0;

    pointer-events: none;
}


/* =========================================================
   POSICIONES DE LOS 4 NODOS
   ========================================================= */


/* 1 — Arriba */

.node-top {

    top: 3px;
    left: 166px;

}


/* 2 — Derecha */

.node-right {

    right: 3px;
    top: 166px;

}


/* 3 — Abajo */

.node-bottom {

    bottom: 3px;
    left: 166px;

}


/* 4 — Izquierda */

.node-left {

    left: 3px;
    top: 166px;

}


/* =========================================================
   HOVER
   ========================================================= */

.process-node:hover {

    transform: scale(1.12);

    background: #2c5a31;

    box-shadow:
        0 10px 28px rgba(132, 189, 0, 0.25);
}


/* =========================================================
   FLECHAS
   ========================================================= */

.orbit-arrow {

    position: absolute;

    width: 20px;
    height: 20px;

    color: #84BD00;

    font-size: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 10;
}


/* =========================================================
   POSICIÓN DE LAS FLECHAS
   ========================================================= */

.arrow-top-left {

    top: 48px;
    left: 91px;

    transform: rotate(-35deg);
}


.arrow-top-right {

    top: 48px;
    right: 91px;

    transform: rotate(35deg);
}


.arrow-bottom-right {

    bottom: 48px;
    right: 91px;

    transform: rotate(145deg);
}


.arrow-bottom-left {

    bottom: 48px;
    left: 91px;

    transform: rotate(-145deg);
}


/* =========================================================
   ANIMACIÓN SUAVE
   ========================================================= */

.process-node {

    animation: processPulse 4s ease-in-out infinite;
}


.node-right {
    animation-delay: 1s;
}

.node-bottom {
    animation-delay: 2s;
}

.node-left {
    animation-delay: 3s;
}


@keyframes processPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 900px) {

    .data-decision-visual {
        min-height: 380px;
    }

    .process-orbit {

        width: 340px;
        height: 340px;

    }

    .orbit-outer {

        width: 290px;
        height: 290px;

        top: 25px;
        left: 25px;

    }

    .orbit-inner {

        width: 230px;
        height: 230px;

        top: 55px;
        left: 55px;

    }

    .data-decision-center {

        width: 135px;
        height: 135px;

    }

    .center-icon {

        font-size: 28px;

    }

    .center-title {

        font-size: 18px;

    }

    .center-arrow {

        font-size: 13px;

    }

    .process-node {

        width: 52px;
        height: 52px;

    }

    .process-node-icon {

        font-size: 20px;

    }

    .node-top {

        top: 0;
        left: 144px;

    }

    .node-right {

        right: 0;
        top: 144px;

    }

    .node-bottom {

        bottom: 0;
        left: 144px;

    }

    .node-left {

        left: 0;
        top: 144px;

    }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .data-decision-visual {

        min-height: 340px;

        margin-top: 20px;

    }

    .process-orbit {

        width: 300px;
        height: 300px;

    }

    .orbit-outer {

        width: 250px;
        height: 250px;

        top: 25px;
        left: 25px;

    }

    .orbit-inner {

        width: 195px;
        height: 195px;

        top: 52.5px;
        left: 52.5px;

    }

    .data-decision-center {

        width: 115px;
        height: 115px;

    }

    .center-icon {

        font-size: 24px;

        margin-bottom: 5px;

    }

    .center-title {

        font-size: 16px;

    }

    .center-arrow {

        font-size: 12px;

    }

    .process-node {

        width: 48px;
        height: 48px;

    }

    .process-node-icon {

        font-size: 18px;

    }

    .node-top {

        top: 1px;
        left: 126px;

    }

    .node-right {

        right: 1px;
        top: 126px;

    }

    .node-bottom {

        bottom: 1px;
        left: 126px;

    }

    .node-left {

        left: 1px;
        top: 126px;

    }

    .orbit-arrow {

        font-size: 10px;

    }

}