:root {
    --primary-blue: #0066CC;
    --dark-blue: #004A99;
    --light-blue: #4D94FF;
    --accent-yellow: #FFC107;
    --dark-yellow: #FFA000;
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --medium-gray: #E0E4E8;
    --dark-gray: #6B7280;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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

header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-info a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s;
}

.contact-info a:hover {
    opacity: 0.8;
}

.header-main {
    padding: 20px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav a:hover {
    color: var(--primary-blue);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-blue);
}

.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    object-fit: cover;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--dark-yellow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

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

section {
    padding: 80px 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
}

.services-highlight {
    background: var(--light-gray);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: var(--primary-blue);
}

.card p {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.card-link {
    display: block;
    padding: 15px 20px;
    background: var(--light-gray);
    color: var(--primary-blue);
    font-weight: 600;
    transition: all 0.3s;
}

.card-link:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.info-section {
    background: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-grid.reverse {
    direction: rtl;
}

.info-grid.reverse > * {
    direction: ltr;
}

.info-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

.info-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
    margin-bottom: 30px;
}

.check-list li {
    padding: 10px 0;
    font-size: 18px;
    color: var(--text-dark);
}

.info-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.detran-section {
    background: var(--light-gray);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 44px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-yellow);
}

.footer-section p,
.footer-section li {
    color: var(--medium-gray);
    line-height: 1.8;
}

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

.footer-section a {
    color: var(--medium-gray);
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--medium-gray);
    font-size: 14px;
}

.fixed-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.whatsapp-button,
.phone-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s;
}

.whatsapp-button {
    background: #25D366;
    color: var(--white);
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.phone-button {
    background: var(--primary-blue);
    color: var(--white);
}

.phone-button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

.whatsapp-button svg,
.phone-button svg {
    width: 30px;
    height: 30px;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.content-section {
    padding: 60px 20px;
}

.content-section h2 {
    text-align: left;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 32px;
}

.content-section h3 {
    color: var(--primary-blue);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 24px;
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.content-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-section li {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.warning-box {
    background: #FFF3CD;
    border-left: 4px solid var(--accent-yellow);
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
}

.warning-box p {
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

.info-box {
    background: #D1ECF1;
    border-left: 4px solid var(--primary-blue);
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
}

.info-box p {
    color: var(--text-dark);
    margin: 0;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.faq-answer {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

.contact-card h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-light);
    font-size: 16px;
}

.contact-card a {
    color: var(--primary-blue);
    font-weight: 600;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav {
        display: none;
    }

    nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 20px;
    }

    nav.active ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-grid.reverse {
        direction: ltr;
    }

    .info-content h2 {
        text-align: center;
    }

    h2 {
        font-size: 32px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

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

    section {
        padding: 60px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .fixed-buttons {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-button,
    .phone-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button svg,
    .phone-button svg {
        width: 24px;
        height: 24px;
    }
}
