body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #003641; /* Cor do texto principal */
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #003641 0%, #005a6b 100%);
    color: #FFFFFF; /* Cor do texto do cabeçalho */
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 54, 65, 0.3);
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997, #17a2b8);
}

.logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo:hover {
    transform: scale(1.05);
}

h1 {
    margin: 0;
    font-size: 2.2em;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

main {
    padding: 20px;
    max-width: 900px;
    margin: 20px auto;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quote-section {
    margin-bottom: 25px;
    padding: 20px;
    border: 2px solid #003641;
    border-radius: 12px;
    background: #FFFFFF;
    box-shadow: 0 4px 6px rgba(0, 54, 65, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #003641, #005a6b);
}

.quote-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 54, 65, 0.2);
    border-color: #005a6b;
}

.quote-section h2 {
    color: #003641;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4em;
    font-weight: 700;
    padding-left: 15px;
}

.quote-section p {
    margin: 8px 0;
    padding-left: 15px;
    font-size: 1.05em;
}

.quote-section p strong {
    color: #003641;
    font-weight: 600;
}

.quote-section p:last-of-type {
    font-size: 1.15em;
    font-weight: 700;
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.delivery-info {
    text-align: center;
    font-size: 1.2em;
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    border-radius: 12px;
    border: 2px solid #28a745;
    color: #155724;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(40, 167, 69, 0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 6px rgba(40, 167, 69, 0.1); }
    50% { box-shadow: 0 6px 12px rgba(40, 167, 69, 0.2); }
    100% { box-shadow: 0 4px 6px rgba(40, 167, 69, 0.1); }
}

footer {
    background-color: #003641;
    color: #FFFFFF;
    text-align: center;
    padding: 15px;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 30px;
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 1.5em;
    }

    main {
        margin: 10px;
        padding: 15px;
    }

    .logo {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.2em;
    }

    .quote-section {
        padding: 10px;
    }

    .logo {
        max-width: 100px;
    }
}
