/**
 * Syngenta Agrisure Styles
 * 
 * @package Syngenta_Agrisure
 */

/* Container Principal */
.ss-agrisure-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #FFFFFF;
}

/* Camadas de Fundo (Layers) */
.ss-agrisure-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ss-agrisure-bg-white {
    background-color: #FFFFFF;
    z-index: 1;
}

.ss-agrisure-bg-yellow {
    background-color: #FDD301;
    z-index: 2;
    opacity: 0;
    /* Controlado via JS */
}

/* Container do Milho */
.ss-agrisure-kernel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
}

.ss-agrisure-kernel-wrapper {
    position: relative;
    width: 200px;
    /* Tamanho inicial */
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Scale controlado via JS */
}

.ss-agrisure-kernel-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    position: relative;
}

/* Anéis Animados */
.ss-agrisure-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ss-agrisure-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(76, 175, 80, 0.3);
    /* Verde suave */
    border-radius: 50%;
    opacity: 0.6;
}

.ss-agrisure-ring-1 {
    width: 100%;
    height: 100%;
}

.ss-agrisure-ring-2 {
    width: 140%;
    height: 140%;
}

.ss-agrisure-ring-3 {
    width: 180%;
    height: 180%;
}

/* Conteúdo Final (Elementor) */
.ss-agrisure-final-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    opacity: 0;
    /* Controlado via JS */
    pointer-events: none;
    /* Inicialmente não clicável */
    /* Quando visível, pointer-events deve ser 'auto' */
}

.ss-agrisure-content-wrapper {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    position: relative;
}

/* Elementor Section Override */
.ss-agrisure-elementor-section {
    width: 100%;
}

/* Fallback message */
.ss-agrisure-no-section {
    background: rgba(255, 255, 255, 0.9);
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

/* ==============================================
   RESPONSIVIDADE MOBILE
   ============================================== */
@media (max-width: 768px) {
    .ss-agrisure-kernel-wrapper {
        width: 140px;
        height: 140px;
    }

    /* OCULTAR CONTEÚDO FINAL NO MOBILE */
    .ss-agrisure-final-content {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    /* Reduzir altura do container no mobile */
    .ss-agrisure-container {
        height: 100vh;
    }
}