/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.topo {
    width: 100%;
    position: fixed;
    top: 0;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
}

/* Container da logo */
.logo-completa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Texto da logo */
.texto-logo {
    font-family: 'Georgia', serif;
    font-weight: 700;
    font-size: 1rem;
    color: #2f3e2f;
    letter-spacing: 0.8px;
}

/* Logo imagem */
.logo-simbolo {
    width: 32px;
    height: auto;
}

/* Responsivo */
@media(max-width: 480px){
    .logo-completa {
        flex-direction: row; /* Mantém tudo em linha no mobile */
        flex-wrap: nowrap;
        gap: 4px;
    }

    .texto-logo {
        font-size: 0.8rem; /* Ajuste proporcional da fonte */
    }

    .logo-simbolo {
        width: 24px; /* Logo menor no mobile */
    }
}



/* HERO */
.hero {
    width: 100%;
    min-height: 100vh;
    background: url('imagens/adriana-2.png') no-repeat center top / cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    color: #fff;
    text-align: center;
    z-index: 2;
    max-width: 500px;
    margin-top: 50px;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-content h1 span {
    color: #3e9141;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn {
    background: #FF6600;
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    background: #3e9141;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* Seção Sobre */
.sobre {
    background: #fff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.container-sobre {
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.imagem-sobre {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.texto-sobre h2 {
    font-size: 2rem;
    color: #111;
    margin-bottom: 15px;
}

.texto-sobre .descricao {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    max-width: 600px;
}

.btn-outline {
    padding: 12px 32px;
    border: 2px solid #4CAF50;
    color: #4CAF50;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #4CAF50;
    color: #fff;
}

/* Layout desktop - Sobre */
@media(min-width: 768px){
    .container-sobre {
        flex-direction: row;
        text-align: left;
    }

    .imagem-sobre {
        margin-right: 40px;
    }
}

.catalogo {
    background: #4b552b;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.catalogo-texto .categoria {
    color: #2f3e2f;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.catalogo-texto h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 800;
}

.caixas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.caixa {
    background: #fff;
    color: #111;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.caixa:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.caixa img {
    width: 80px;
    margin-bottom: 20px;
}

.caixa h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #222;
}

.caixa .preco {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 12px;
}

.caixa .descricao {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-outline.small {
    padding: 12px 26px;
    border: 2px solid #4CAF50;
    border-radius: 50px;
    font-size: 1rem;
    color: #4CAF50;
    font-weight: 700;
    transition: 0.3s ease;
    background: #fff;
}

.btn-outline.small:hover {
    background: #4CAF50;
    color: #fff;
}

/* Responsivo */
@media(min-width: 768px){
    .caixas {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Promoção */
.suculentas-promocao {
    background: #f6fdf8;
    padding: 80px 20px;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.suculentas-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
}

.suculentas-texto {
    text-align: center;
    max-width: 550px;
}

.suculentas-texto .categoria {
    color: #4CAF50;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.suculentas-texto h2 {
    font-size: 2.4rem;
    color: #111;
    margin-bottom: 20px;
    font-weight: 800;
}

.suculentas-texto p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 18px;
    line-height: 1.7;
}

.suculentas-imagem img {
    width: 100%;
    border-radius: 0 40px 0 40px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.suculentas-texto .btn {
    background: #4CAF50;
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.suculentas-texto .btn:hover {
    background: #FF6600;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

@media(min-width: 768px){
    .suculentas-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .suculentas-texto {
        text-align: left;
        flex: 1;
        padding-right: 50px;
    }

    .suculentas-imagem {
        flex: 1;
    }
}