body {
    font-family: 'Inter', 'Poppins', Arial, sans-serif;
    margin: 0;
    background: #f8f9fa;
    color: #222;
}

.main-header {
    background: #fff;
    text-align: center;
    padding: 32px 16px 16px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.logo {
    width: 120px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 16px #e53935aa);
}
.menu-space {
    height: 70px;
}

.navbar {
    background: #fff;
    border-bottom: 1.5px solid #e63946;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.navbar-brand {
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.nav-link {
    color: #222 !important;
    font-weight: 600;
    font-size: 1.08rem;
    transition: color 0.2s;
}

.nav-link.active,
.nav-link:hover {
    color: #e63946 !important;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(230,57,70,1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.company-name {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    color: #222;
}

.company-name .red {
    color: #e53935;
}

.slogan {
    font-size: 1.1rem;
    color: #222;
    margin-top: 8px;
}

.intro {
    background: linear-gradient(90deg, #e53935 0%, #222 100%);
    color: #fff;
    padding: 32px 0;
}

.intro-content {
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 32px;
    flex-wrap: wrap;
    padding: 0 16px;
}

.intro-img {
    width: 320px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(229, 57, 53, 0.08);
}

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #fff;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: #fff;
}

.whatsapp-btn {
    display: inline-block;
    background: #e53935;
    color: #fff;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 32px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.15);
    transition: background 0.2s;
}

.whatsapp-btn:hover {
    background: #222;
}

/* Menu */
nav.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1.5px solid #e63946;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

nav.menu ul {
    display: flex;
    justify-content: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav.menu a {
    display: block;
    padding: 18px 0;
    color: #222;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.08rem;
    transition: color 0.2s, border-bottom 0.2s;
    border-bottom: 2px solid transparent;
    letter-spacing: 0.5px;
}

nav.menu a:hover,
nav.menu a.active {
    color: #e63946;
    border-bottom: 2px solid #e63946;
}

.menu-space {
    height: 58px;
}

/* Hero Section */
.hero-section {
    background: #fff;
    padding: 64px 0 48px 0;
    box-shadow: 0 2px 16px rgba(230, 57, 70, 0.04);
    border-radius: 0 0 32px 32px;
    margin-bottom: 32px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    gap: 48px;
    flex-wrap: wrap;
    padding: 0 16px;
}

.hero-text {
    flex: 1 1 340px;
    min-width: 280px;
}

.hero-text h1 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #e63946;
    margin-bottom: 18px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.15rem;
    color: #222;
    margin-bottom: 32px;
    line-height: 1.5;
}

.cta-btn {
    display: inline-block;
    background: #e63946;
    color: #fff;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 32px;
    text-decoration: none;
    font-size: 1.15rem;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.15);
    transition: background 0.2s, transform 0.2s;
    border: none;
}

.cta-btn:hover {
    background: #d90429;
    transform: scale(1.05);
}

.hero-img-wrapper {
    flex: 1 1 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 480px;
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 10px 9px 55px -1px rgba(0, 0, 0, 0.2);
    background: #fff;
    object-fit: cover;
}

/* Serviços */
.services-list {
    max-width: 1100px;
    margin: 0 auto 48px auto;
    padding: 0 16px;
}

.services-list h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 32px;
    color: #e63946;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: fadeInUp 0.9s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(230, 57, 70, 0.12);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
}

.service-card h3 {
    color: #e63946;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.service-card p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 18px;
}

.service-btn {
    display: inline-block;
    background: #e63946;
    color: #fff;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s;
    border: none;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.10);
}

.service-btn:hover {
    background: #d90429;
}

/* Galeria */
.gallery-section {
    background: #fff;
    padding: 48px 0;
    margin-bottom: 32px;
}

.gallery-section h2 {
    text-align: center;
    color: #e63946;
    font-size: 2rem;
    margin-bottom: 32px;
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    background: #f8f9fa;
    animation: fadeInUp 1s ease;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.gallery-label {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #e63946cc;
    color: #fff;
    font-size: 0.95rem;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
}

/* Institucional */
.about {
    background: #fff;
    margin: 0 0 48px 0;
    padding: 32px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about h2 {
    text-align: center;
    color: #e63946;
    font-size: 1.5rem;
    margin-bottom: 18px;
    font-weight: 700;
}

.about ul {
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    font-size: 1.1rem;
    color: #444;
}

.about ul li {
    margin-bottom: 14px;
    padding-left: 32px;
    position: relative;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.about-icon {
    font-size: 1.3rem;
    color: #e63946;
    margin-right: 12px;
}

/* Contato */
.contact-section {
    background: #fff;
    padding: 48px 0;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    max-width: 600px;
    margin: 0 auto 48px auto;
}

.contact-section h2 {
    text-align: center;
    color: #e63946;
    font-size: 1.5rem;
    margin-bottom: 18px;
    font-weight: 700;
}

.contact-content {
    text-align: center;
    font-size: 1.08rem;
    color: #222;
}

.contact-content a.cta-btn {
    margin: 18px 0;
}

.contact-content a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.contact-content a:hover {
    text-decoration: underline;
}

/* Botão WhatsApp flutuante (mobile) */
.whatsapp-float {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1200;
    background: #e63946;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.18);
    padding: 15px;
    transition: background 0.2s, transform 0.2s;
}

.whatsapp-float:hover {
    background: #d90429;
    transform: scale(1.08);
}

/* Rodapé */
footer {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 28px 0 18px 0;
    font-size: 1rem;
    margin-top: 0;
    letter-spacing: 1px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.04);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-whatsapp {
    display: inline-block;
    background: #e63946;
    color: #fff;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s;
    margin-top: 8px;
}

.footer-whatsapp:hover {
    background: #d90429;
}

/* Animação de fade-in para seções */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section,
.hero-section,
footer {
    animation: fadeInUp 0.8s ease;
}

/* Responsividade */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column-reverse;
        gap: 32px;
        text-align: center;
    }

    .hero-img {
        margin-bottom: 0;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
}

@media (max-width: 600px) {
    nav.menu ul {
        gap: 8px;
        flex-wrap: wrap;
        padding: 0 8px;
    }

    nav.menu a {
        font-size: 1rem;
        padding: 12px 0;
    }

    .menu-space {
        height: 44px;
    }

    .hero-section {
        padding: 32px 0 24px 0;
        border-radius: 0 0 18px 18px;
    }

    .hero-img {
        width: 100%;
        max-width: 420px;
    }

    .services-list h2,
    .gallery-section h2,
    .about h2,
    .contact-section h2 {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-card {
        padding: 20px 10px;
    }

    .gallery-item img {
        aspect-ratio: 1/1;
    }

    .about {
        padding: 18px 0;
        border-radius: 12px;
    }

    .contact-section {
        padding: 18px 10px;
        border-radius: 12px;
    }

    .whatsapp-float {
        display: block;
    }
}

/* Oculta botão flutuante no desktop */
@media (min-width: 601px) {
    .whatsapp-float {
        display: none !important;
    }
}