* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    
    background: 
        radial-gradient(circle at top right, rgba(255, 245, 236, 0.8), rgba(255, 250, 245, 1)),
        url('https://www.transparenttextures.com'); 
    color: #4a3f35;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 60px 20px;
}

.pagina-História {
    max-width: 850px;
    background: #ffffff;
    padding: 100px 80px;
    border-radius: 4px;
    position: relative;
    box-shadow: 
        0 10px 20px rgba(210, 180, 150, 0.05),
        0 40px 100px rgba(210, 180, 150, 0.1);
}


.pagina-História::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    height: 150px;
    width: 1px;
    background: #ff8c42;
    box-shadow: 4px 0 0 #ffe5d9;
}

.hero-História {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.titulo-principal {
    font-family: 'Playfair Display', serif;
    color: #d35400;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.tagline {
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #cc8e6c;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}


.tagline::before, .tagline::after {
    content: "";
    width: 6px;
    height: 6px;
    background: #ffb38a;
    border-radius: 50%;
}


.hero-História img {
    width: 350px; 
    height: 350px;
    object-fit: cover;
    border-radius: 50%;
    border: 15px solid #fff;
    box-shadow: 0 20px 50px rgba(211, 84, 0, 0.12);
    margin-bottom: 30px;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
}

.hero-História img:hover {
    transform: scale(1.02) rotate(-2deg);
    box-shadow: 0 30px 60px rgba(211, 84, 0, 0.18);
}

p {
    line-height: 2.4; 
    font-size: 1.2rem;
    text-align: justify;
    margin-bottom: 35px;
    color: #5d544d;
    font-weight: 300;
}


p:first-of-type::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: #ff8c42;
    float: left;
    margin-right: 15px;
    line-height: 0.7;
    margin-top: 15px;
    font-style: italic;
    border-bottom: 4px solid #fff5ec;
}

.pagina-História::after {
    content: "✦ ✦ ✦";
    display: block;
    text-align: center;
    color: #ffb38a;
    letter-spacing: 10px;
    font-size: 1rem;
    margin-top: 50px;
}
.rodape-História {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #555; /* Cor cinza suave */
    border-top: 1px solid #ddd;
    margin-top: 40px;
}