
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

.highlight {
    color: #2563eb;
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

.btn--primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.btn--primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn--secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn--secondary:hover {
    background: #2563eb;
    color: white;
}

.btn--large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav__logo {
    width: 40px;
    height: 40px;
}

.nav__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav__link:hover,
.nav__link.active {
    color: #2563eb;
}

.nav__toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333333;
}

/* Main Content */
.main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.hero__description {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Section */
.section {
    padding: 80px 0;
}

.bg-gray {
    background-color: #f8fafc;
}

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

.section__title {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section__description {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.page-header__title {
    font-size: 3rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.page-header__subtitle {
    font-size: 1.25rem;
    color: #64748b;
}

/* Jurisdição Grid */
.jurisdicao__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.jurisdicao__card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.jurisdicao__card:hover {
    transform: translateY(-5px);
}

.jurisdicao__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.jurisdicao__title {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.jurisdicao__description {
    color: #64748b;
}

/* Multas Grid */
.multas__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.multa__item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.multa__item:hover {
    transform: translateY(-3px);
}

.multa__item i {
    font-size: 1.5rem;
    color: #2563eb;
    min-width: 24px;
}

/* Graves Section */
.graves__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.graves__list {
    list-style: none;
    margin-top: 1rem;
}

.graves__list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.graves__list li:last-child {
    border-bottom: none;
}

.graves__list i {
    color: #dc2626;
    font-size: 1.25rem;
}

.warning__box {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid #fca5a5;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.warning__box i {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.warning__box h4 {
    color: #dc2626;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Pagamento Grid */
.pagamento__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pagamento__method {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.pagamento__method:hover {
    transform: translateY(-5px);
}

.pagamento__method i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.pagamento__method h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.desconto__box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #86efac;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.desconto__box i {
    font-size: 3rem;
    color: #16a34a;
    margin-bottom: 1rem;
}

.desconto__box h3 {
    color: #16a34a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.service__card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service__card:hover {
    transform: translateY(-5px);
}

.service__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service__title {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.service__description {
    color: #64748b;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    text-align: center;
}

.cta__title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta__description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn--primary {
    background: white;
    color: #2563eb;
}

.cta .btn--primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* About Content */
.about__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about__list {
    list-style: none;
    margin: 1rem 0;
}

.about__list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
}

.about__list i {
    color: #16a34a;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.about__img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Policy Content */
.policy__content {
    max-width: 800px;
    margin: 0 auto;
}

.policy__content h2 {
    color: #1e293b;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy__content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy__content li {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__logo {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer__title {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer__links {
    display: flex;
    gap: 2rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: white;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
    }

    .nav__menu.show {
        left: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .nav__link {
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
        display: block;
    }

    .nav__toggle {
        display: block;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__title {
        font-size: 2rem;
    }

    .section__title {
        font-size: 2rem;
    }

    .page-header__title {
        font-size: 2rem;
    }

    .cta__title {
        font-size: 2rem;
    }

    .graves__content,
    .about__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer__links {
        justify-content: center;
    }

    .hero__buttons {
        justify-content: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .section {
        padding: 60px 0;
    }

    .page-header {
        padding: 100px 0 60px;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .section__title,
    .page-header__title,
    .cta__title {
        font-size: 1.75rem;
    }

    .multas__grid,
    .pagamento__grid {
        grid-template-columns: 1fr;
    }

    .jurisdicao__grid,
    .services__grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth animations */
.section,
.hero,
.cta {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll reveal animation delays */
.section:nth-child(1) { animation-delay: 0.1s; }
.section:nth-child(2) { animation-delay: 0.2s; }
.section:nth-child(3) { animation-delay: 0.3s; }
.section:nth-child(4) { animation-delay: 0.4s; }
.section:nth-child(5) { animation-delay: 0.5s; }
