/* Reset e Variáveis */
:root {
    --vermelho: #E31E24;
    --amarelo: #FFD800;
    --branco: #FFFFFF;
    --cinza-escuro: #333333;
    --cinza-medio: #666666;
    --cinza-claro: #F5F5F5;
    --sombra: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--cinza-escuro);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--branco);
    box-shadow: 0 2px 10px var(--sombra);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--vermelho);
    font-weight: 700;
    font-size: 1.1rem;
}

.logo img {
    height: 45px;
    width: 45px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--cinza-escuro);
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--vermelho);
}

.btn-nav {
    background: var(--vermelho);
    color: var(--branco) !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: #c41a1f;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--vermelho);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--vermelho) 0%, #c41a1f 100%);
    color: var(--branco);
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: var(--amarelo);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--amarelo);
    color: var(--cinza-escuro);
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--branco);
    border: 2px solid var(--branco);
}

.btn-secondary:hover {
    background: var(--branco);
    color: var(--vermelho);
}

/* Seções */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--cinza-escuro);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--cinza-medio);
}

/* Vantagens */
.vantagens {
    background: var(--cinza-claro);
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vantagem-card {
    background: var(--branco);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--sombra);
    transition: all 0.3s;
    text-align: center;
}

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

.vantagem-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--vermelho), #c41a1f);
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.vantagem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--vermelho);
}

.vantagem-card p {
    color: var(--cinza-medio);
    line-height: 1.7;
}

/* Sobre */
.sobre-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-content p {
    margin-bottom: 1.5rem;
    color: var(--cinza-medio);
    line-height: 1.8;
}

.sobre-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    list-style: none;
}

.sobre-stats li {
    text-align: center;
}

.sobre-stats strong {
    display: block;
    font-size: 2.5rem;
    color: var(--vermelho);
    font-weight: 800;
}

.sobre-stats span {
    color: var(--cinza-medio);
    font-size: 0.9rem;
}

.sobre-image {
    position: relative;
}

.sobre-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--sombra);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--amarelo);
    color: var(--cinza-escuro);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Diferenciais */
.diferenciais {
    background: var(--cinza-claro);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.diferencial-item {
    background: var(--branco);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--sombra);
    border-left: 5px solid var(--vermelho);
    transition: all 0.3s;
}

.diferencial-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.diferencial-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--amarelo);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.diferencial-item h3 {
    font-size: 1.4rem;
    color: var(--vermelho);
    margin-bottom: 1rem;
}

.diferencial-item p {
    color: var(--cinza-medio);
    line-height: 1.7;
}

/* Depoimentos */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.depoimento-card {
    background: var(--branco);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--sombra);
    transition: all 0.3s;
}

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

.depoimento-stars {
    color: var(--amarelo);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.depoimento-text {
    font-style: italic;
    color: var(--cinza-medio);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--vermelho), #c41a1f);
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info strong {
    display: block;
    color: var(--cinza-escuro);
    font-weight: 600;
}

.author-info span {
    color: var(--cinza-medio);
    font-size: 0.9rem;
}

/* FAQ */
.faq {
    background: var(--cinza-claro);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--branco);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--sombra);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cinza-escuro);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: var(--cinza-claro);
    color: var(--vermelho);
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--vermelho);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--cinza-medio);
    line-height: 1.7;
}

/* Contato */
.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contato-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.contato-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(227, 30, 36, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.image-overlay p {
    color: var(--branco);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.contato-details {
    margin-top: 2rem;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contato-item i {
    width: 50px;
    height: 50px;
    background: var(--vermelho);
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contato-item strong {
    display: block;
    color: var(--cinza-escuro);
    margin-bottom: 0.3rem;
}

.contato-item a {
    color: var(--vermelho);
    text-decoration: none;
    font-weight: 500;
}

.contato-item a:hover {
    text-decoration: underline;
}

/* Formulário */
.contato-form {
    background: var(--cinza-claro);
    padding: 2.5rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--cinza-escuro);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--vermelho);
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--cinza-escuro);
    color: var(--branco);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--amarelo);
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--amarelo);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--amarelo);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #999;
}

/* Botões Flutuantes */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20BA5A;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
    }
}

.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--vermelho);
    color: var(--branco);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s;
}

.back-to-top:hover {
    background: #c41a1f;
    transform: translateY(-3px);
}

.back-to-top.show {
    display: flex;
}

/* Responsivo */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--branco);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 5px 20px var(--sombra);
        transition: left 0.3s;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

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

    .sobre-wrapper,
    .contato-wrapper {
        grid-template-columns: 1fr;
    }

    .sobre-stats {
        justify-content: space-around;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .vantagens-grid,
    .diferenciais-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .sobre-stats {
        flex-direction: column;
        gap: 1rem;
    }
}