/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: #e7f6c3;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Container Principal */
.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
    position: relative;
    padding: 20px;
}

/* Linha Divisória Vertical */
.divider-line {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 80%;
    width: 2px;
    background: #80BB9D;
    z-index: 1;
}

/* Secções Esquerda e Direita */
.left-section, .right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Estética do Logo */
.logo-container {
    width: 350px;
    height: 267px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    margin-bottom: 40px; /* ← AUMENTADO de 20px para 40px */
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Título */
.main-title {
    width: 350px;
    font-weight: 500;
    font-size: 60px;
    line-height: 1.1;
    text-align: center;
    color: #000000;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    word-break: keep-all;
    white-space: normal;
}

/* Botões */
.right-section {
    gap: 15px;
}

.emotion-button {
    width: 280px;
    height: 75px;
    border-radius: 15px;
    border: 2px solid;
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.emotion-button:hover {
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.emotion-button:active {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    transform: translateY(0px);
}

/* Cores */
.alegria { background-color: #fef0cb; border-color: #ffe592; }
.tristeza { background-color: #ddf0ff; border-color: #abd5f8; }
.medo { background-color: #ebe2ff; border-color: #d2b2d7; }
.raiva { background-color: #ffe2df; border-color: #edb2b1; }
.amor { background-color: #ffe4f7; border-color: #e5abbe; }
.calma { background-color: #d6f2da; border-color: #a1cca3; }

.emoji-container {
    width: 70px;
    display: flex;
    justify-content: center;
}

.emoji { 
    width: 50px; 
    height: 50px; 
}

.emotion-text {
    flex: 1;
    font-size: 36px;
    font-weight: 500;
    color: #000;
    padding-right: 40px;
    text-align: center;
}

/* Grama */
.grass-background {
    width: 100%;
    height: 179px;
    line-height: 0;
    margin-top: auto;
}

.grass {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsividade */
@media screen and (max-width: 1100px) {
    .container {
        flex-direction: column;
        padding-top: 50px;
    }
    
    .divider-line {
        display: none;
    }
    
    .left-section {
        margin-bottom: 40px;
    }
    
    .logo-container {
        width: 80%;
        max-width: 350px;
        height: auto;
        aspect-ratio: 350 / 267;
    }
    
    .main-title {
        width: 80%;
        max-width: 350px;
        font-size: clamp(40px, 5vw, 60px);
    }
}

@media screen and (max-width: 768px) {
    .logo-container {
        width: 70%;
        max-width: 280px;
        margin-bottom: 30px;
    }
    
    .main-title {
        width: 70%;
        max-width: 280px;
        font-size: clamp(32px, 7vw, 50px);
    }
    
    .emotion-button {
        width: 90%;
        max-width: 280px;
    }
}