/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos gerais */
body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #555;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.main-content {
    text-align: center;
    max-width: 800px;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Logo */
.logo-container {
    margin-bottom: 20px;
}

.main-logo {
    max-width: 100%;
    height: auto;
}

.heritage-note {
    font-size: 1.2em;
    color: #777;
    margin-top: 10px;
}

/* Títulos */
h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.main-subtitle {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
}

/* Destaque Emocional */
.emotional-highlight {
    background: linear-gradient(135deg, #FF8C00 0%, #E67E00 100%);
    color: white;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.emotional-highlight h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.emotional-highlight p {
    font-size: 1.1em;
}

/* Seção de Parceiros */
.story-section {
    margin: 60px 0;
    padding: 50px 0;
    border-top: 2px solid #FFF4E6;
    border-bottom: 2px solid #FFF4E6;
    background: linear-gradient(135deg, #FFF4E6 0%, rgba(255, 244, 230, 0.3) 100%);
    border-radius: 16px;
}

.story-title {
    font-size: 2.4em;
    margin-bottom: 25px;
    color: #2C2C2C;
}

.story-description {
    font-size: 1.15em;
    color: #555555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.partner-card {
    background: #FFFFFF;
    padding: 30px 25px;
    border-radius: 18px;
    border: 1px solid rgba(255, 140, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.15);
    border-color: #FFB347;
}

.partner-logo {
    width: 100%;
    max-width: 130px;
    height: auto;
    margin-bottom: 15px;
}

.partner-name {
    font-weight: 600;
    font-size: 1em;
    color: #2C2C2C;
    text-align: center;
}

/* Detalhes de Contato */
.contact-details {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
}

/* Botão WhatsApp */
.whatsapp-float {
    background: #25D366;
    color: #fff;
    font-size: 1.2em;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
    background: #1DA851;
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* Rodapé */
.footer {
    text-align: center;
    padding: 20px;
    background: #f8f8f8;
    color: #555;
    font-size: 0.9em;
    margin-top: 40px;
}

.footer p {
    margin: 5px 0;
}