@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    overflow-x: hidden;
}

/* --- CABEÇALHO --- */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

header .logo {
    position: relative;
    max-width: 80px;
}

header ul {
    position: relative;
    display: flex;
}

header ul li {
    list-style: none;
}

header ul li a {
    display: inline-block;
    color: #333;
    font-weight: 400;
    margin-left: 40px;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

header ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #017143;
    transition: width 0.3s ease;
}

header ul li a:hover::after {
    width: 100%;
}

/* --- CONTEÚDO --- */
.content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.content .textBox {
    position: relative;
    max-width: 600px;
}

.content .textBox h2 {
    color: #333;
    font-size: 4em;
    line-height: 1.4em;
    font-weight: 500;
}

.content .textBox h2 span {
    color: #017143;
    font-size: 1.2em;
    font-weight: 900;
}

.content .textBox p {
    color: #333;
}

.content .textBox a {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    background: #017143;
    color: #fff;
    border-radius: 40px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.4s ease-in-out;
}

.content .textBox a:hover {
    background-color: #76a592;
}

.content .imgBox {
    width: 600px;
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
    margin-top: 50px;
}

.content .imgBox img {
    max-width: 340px;
}

/* --- MINIATURAS --- */
.thumb {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.thumb li {
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    cursor: pointer;
    transition: 0.5s;
}

.thumb li:hover {
    transform: translateY(-15px);
}

.thumb li img {
    max-width: 60px;
}

/* --- REDES SOCIAIS --- */
.sci {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10;
}

.sci li {
    list-style: none;
}

.sci li a {
    display: inline-block;
    margin: 5px 0;
    transform: scale(0.6);
    filter: invert(1);
}

.sci li a img {
    transition: transform 0.2s ease;
}

.sci li a:hover img {
    transform: scale(1.4);
}

/* --- CÍRCULO --- */
.circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #017143;
    clip-path: circle(600px at right 800px);
    transition: background 0.5s ease;
}

/* --- TOGGLE --- */
.menu-toggle {
    display: none;
}


/* =========================================
   MEDIA QUERY (MOBILE - ESTILO ORIGINAL)
   ========================================= */
@media (max-width: 767px) {
    
    section {
        padding: 60px 20px 80px;
        min-height: auto;
        display: block; /* Volta ao comportamento original */
    }
    
    header {
        padding: 15px 20px;
    }
    
    header .logo {
        max-width: 50px;
    }

    /* Menu Lateral Original */
    header ul {
        position: fixed; /* Mudei para fixed para garantir que fique na tela */
        top: 0;
        left: -100%;
        width: 60%;
        height: 100vh;
        background: rgb(97, 173, 86); /* Verde claro original */
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
        padding-top: 3rem;
        z-index: 100;
        transition: 0.5s;
    }
    
    header ul.active {
        left: 0;
    }
    
    header ul li {
        margin: 15px 0;
    }
    
    header ul li a {
        margin-left: 0;
        font-size: 1.2em;
        color: #fff;
    }
    
    header ul li a::after {
        background-color: #fff;
    }

    /* Botão Hamburguer */
    .menu-toggle {
        display: block;
        position: relative;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 10000;
    }
    
    .menu-toggle span {
        position: absolute;
        width: 100%;
        height: 3px;
        background: #333;
        transition: 0.3s;
    }
    
    .menu-toggle span:nth-child(1) { top: 0; }
    .menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .menu-toggle span:nth-child(3) { bottom: 0; }
    
    .menu-toggle.active span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }
    
    /* Layout Conteúdo */
    .content {
        flex-direction: column;
        text-align: center;
        margin-top: 30px;
    }
    
    .content .textBox {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .content .textBox h2 {
        font-size: 2em;
        line-height: 1.2em;
    }
    
    .content .imgBox {
        width: 100%;
        justify-content: center;
        padding-right: 0;
        margin-top: 20px;
        margin-bottom: 30px;
    }
    
    .content .imgBox img {
        max-width: 220px;
    }
    
    /* Thumbs (Estilo Original) */
    .thumb {
        position: relative; /* Ajuste para não quebrar o layout */
        left: auto;
        bottom: auto;
        transform: none;
        display: flex;
        justify-content: center;
        margin: 5px 0;
        width: 100%;
    }
    
    .thumb li {
        margin: 0 10px;
    }
    
    .thumb li img {
        max-width: 40px;
    }
    
    /* Círculo (Estilo Original) */
    /* Dentro do @media (max-width: 767px) */

    .circle {
        /* Mudei de 100% para 90% no eixo X (direita) para garantir que não seja cortado */
        /* Mudei de 65% para 60% no eixo Y (altura) para subir um pouco e ficar atrás do copo */
        clip-path: circle(600px at 120% 120%);

        
        background: #017143;
        
        /* Garante que ele ocupe o fundo */
        width: 100%;
        height: 100%;
        position: absolute;
        
        /* Garante que fique atrás do copo (que tem z-index maior), mas visível */
        z-index: 1; 
    }
    
    .content .imgBox img {
        max-width: 220px;
        position: relative;
        /* Garante que o copo fique NA FRENTE do círculo */
        z-index: 5; 
    }
    
    /* Redes Sociais (Estilo Original - Topo) */
    .sci {
        display: flex;
        position: absolute;
        top: 1rem;
        right: 50px; /* Ajuste para não colar no menu */
        transform: none;
        flex-direction: row; /* Horizontal para caber melhor */
    }
    
    .sci li a img {
        width: 25px;
        filter: invert(0);
    }
}