/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container base */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #fff;
    border-bottom: 2px solid #c62828;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 50px;
    transition: transform 0.3s ease;
}

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

.menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    position: relative;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #c62828;
}

.menu a::after {
    content: '';
    background-color: #c62828;
    position: absolute;
    height: 2px;
    left: 0;
    bottom: -1px;
    width: 0%;
    transition: 0.3s;
}

.menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #c62828;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('./assets/hero-section.webp') center/cover;
    color: #fff;
    text-align: center;
    padding: 140px 20px 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-block;
    background: #c62828;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: #a21e1e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 40, 40, 0.4);
}

/* Benefícios */
.beneficios {
    padding: 80px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.beneficios h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #c62828;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #c62828;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(198, 40, 40, 0.1), transparent);
    transition: left 0.5s;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card h3 {
    color: #c62828;
    margin: 20px 0 15px;
    font-size: 1.3rem;
}

.card img {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.card:hover img {
    transform: scale(1.1);
}

.card p {
    line-height: 1.6;
    color: #666;
}

/* Sobre */
.sobre {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.sobre img {
    width: 45%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.sobre img:hover {
    transform: scale(1.02);
}

.sobre div {
    width: 50%;
}

.sobre h2 {
    font-size: 2.5rem;
    color: #c62828;
    margin-bottom: 20px;
}

.sobre p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Parceiros - Seção Estática */
.parceiros-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #c62828, #a21e1e);
    text-align: center;
}

.parceiros-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.parceiro-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.parceiro-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 1);
}

.parceiro-item img {
    width: 100%;
    height: auto;
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.parceiro-item:hover img {
    filter: grayscale(0);
    transform: scale(1.05);
}

/* Contato */
.contato {
    padding: 80px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.contato h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #c62828;
}

.contato form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 600px;
    max-width: 100%;
    margin: auto;
}

.contato input,
.contato textarea {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.contato input:focus,
.contato textarea:focus {
    outline: none;
    border-color: #c62828;
}

.contato textarea {
    min-height: 120px;
    resize: vertical;
}

.pre-footer {
    width: 100%;
    background: linear-gradient(135deg, #c62828, #a21e1e);
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background-color: #fff;
    color: #222;
    padding: 60px 20px 30px;
    border-top: 3px solid #c62828;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-about,
.footer-contact {
    flex: 1;
    min-width: 300px;
}

.footer-about {
    text-align: center;
}

.footer-about h3 {
    margin: 20px 0 15px;
    color: #c62828;
    font-size: 1.3rem;
}

.footer-about p {
    font-size: 14px;
    margin-top: 15px;
    line-height: 1.6;
    color: #666;
}

.footer-logo {
    width: 120px;
    transition: transform 0.3s ease;
}

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

.footer-contact h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
    color: #c62828;
}

.footer-contact p {
    margin: 12px 0;
    line-height: 1.6;
}

.footer-contact a {
    text-decoration: none;
    color: #222;
    position: relative;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #c62828;
}

.footer-contact a::after {
    content: '';
    background-color: #c62828;
    position: absolute;
    height: 1px;
    left: 0;
    bottom: -1px;
    width: 0%;
    transition: 0.3s;
}

.footer-contact a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
    font-size: 14px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom a {
    text-decoration: none;
    color: #222;
    position: relative;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #c62828;
}

.footer-bottom a::after {
    content: '';
    background-color: #c62828;
    position: absolute;
    height: 1px;
    left: 0;
    bottom: -1px;
    width: 0%;
    transition: 0.3s;
}

.footer-bottom a:hover::after {
    width: 100%;
}

/* WhatsApp fixo */
.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
}

.whatsapp a {
    text-decoration: none;
}

.whatsapp i {
    color: #fff;
    background: #25D366;
    border: 2px solid #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp i:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Animações */
.field-error {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
    text-align: left;
}

/* Responsividade */
@media(max-width: 1024px) {
    .sobre {
        flex-direction: column;
        gap: 40px;
    }

    .sobre img,
    .sobre div {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .parceiros-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
}

@media(max-width: 768px) {
    .header {
        padding: 10px 20px;
    }

    .header .container {
        gap: 20px;
    }

    .menu ul {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px;
        right: 20px;
        left: 20px;
        padding: 20px;
        border: 2px solid #c62828;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }

    .menu ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 120px 20px 80px;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .beneficios,
    .contato,
    .sobre {
        padding: 60px 20px;
    }

    .beneficios h2,
    .contato h2,
    .sobre h2,
    .parceiros-section h2 {
        font-size: 2rem;
    }

    .parceiros-section {
        padding: 60px 0;
    }

    .parceiros-section h2 {
        margin-bottom: 40px;
    }

    .parceiros-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }

    .parceiro-item {
        padding: 15px;
        min-height: 80px;
    }

    .parceiro-item img {
        max-width: 80px;
        max-height: 45px;
    }
}

@media(max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .beneficios h2,
    .contato h2,
    .sobre h2,
    .parceiros-section h2 {
        font-size: 1.8rem;
    }

    .card {
        padding: 20px;
    }

    .sobre p {
        font-size: 1rem;
    }

    .contato form {
        width: 100%;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .footer-about,
    .footer-contact {
        min-width: auto;
    }

    .whatsapp {
        right: 15px;
        bottom: 15px;
    }

    .whatsapp i {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    .parceiros-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .parceiro-item {
        padding: 10px;
        min-height: 60px;
    }

    .parceiro-item img {
        max-width: 60px;
        max-height: 35px;
    }
}