* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
  text-decoration: none;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

/* Header */
.site-header {
    background-color: #0a0e27;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.logo img {
    height: 70px;
    display: block;
    transition: transform 0.3s;
}

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

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF8C00;
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: #FF8C00;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(255, 140, 0, 0.15)),
                url('hero.png') center/cover;
    color: white;
    padding: 140px 20px 120px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.3) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 45px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    color: #e8e8e8;
    font-weight: 300;
}

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

.btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background-color: #FF8C00;
    color: white;
    border: 2px solid #FF8C00;
}

.btn-primary:hover {
    background-color: #FF7700;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

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

.btn-secondary:hover {
    background-color: white;
    color: #0a0e27;
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 100px 20px;
}

section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: #0a0e27;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    font-weight: 300;
}

/* Services */
.services {
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 45px 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF8C00, #FFA500);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 48px;
    color: #FF8C00;
    margin-bottom: 25px;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #0a0e27;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* About */
.about {
    background-color: white;
}

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

.about-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #0a0e27;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.9;
    font-size: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-weight: 500;
}

.feature-item i {
    color: #FF8C00;
    font-size: 20px;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), transparent);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Contact */
.contact {
    background-color: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #0a0e27;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 30px;
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s;
}

.contact-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.contact-item-icon {
    color: #FF8C00;
    font-size: 24px;
    margin-top: 3px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff5e6;
    border-radius: 8px;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #0a0e27;
    font-weight: 600;
}

.contact-item p {
    color: #555;
    line-height: 1.6;
}

.contact-item a {
    color: #FF8C00;
    text-decoration: none;
    font-weight: 500;
}

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

.contact-form {
    background: white;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #0a0e27;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #0a0e27;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF8C00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #FF8C00;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background-color: #FF7700;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.3);
}

/* Footer */
.site-footer {
    background-color: #0a0e27;
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #FF8C00;
    font-size: 18px;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-section a:hover {
    color: #FF8C00;
}

.footer-section i {
    margin-right: 8px;
    color: #FF8C00;
}

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

/* ========================================
   PÁGINAS DE SERVIÇO (Service Pages)
   ======================================== */

/* Hero interno (breadcrumb) */
.hero-inner {
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a2550 100%);
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 15px;
    color: #ccc;
}

.breadcrumb a {
    color: #FF8C00;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #FFA500;
    text-decoration: underline;
}

/* Layout da página de serviço */
.service-detail {
    background-color: #ffffff;
    padding: 80px 20px;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}

/* Container da imagem */
.service-detail-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Imagem padronizada */
.service-detail-image img,
.service-image {
    width: 100%;
    max-width: 480px;
    height: 340px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-image img:hover,
.service-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 140, 0, 0.2);
}

/* Conteúdo textual */
.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0a0e27;
    text-align: left;
}

.service-detail-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #0a0e27;
    font-weight: 600;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-detail-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.service-detail-list li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    color: #333;
    line-height: 1.7;
}

.service-detail-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #FF8C00;
    font-size: 18px;
    font-weight: bold;
}

/* Call-to-Action (CTA) */
.service-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-top: 60px;
}

.service-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #0a0e27;
}

.service-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

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

.btn-service {
    display: inline-block;
    margin-top: 20px;
}

/* Responsive - Páginas de Serviço */
@media (max-width: 768px) {
    .service-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-image img,
    .service-image {
        max-width: 100%;
        height: 260px;
    }

    .service-detail-content h2 {
        font-size: 28px;
        text-align: center;
    }

    .service-detail-content h3 {
        font-size: 22px;
    }

    .service-cta h2 {
        font-size: 26px;
    }

    .service-cta-buttons {
        flex-direction: column;
    }
}

/* ======================================== */

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

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

    .about-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
    }

    section h2 {
        font-size: 32px;
    }

    .main-nav {
        position: fixed;
        top: 110px;
        right: -100%;
        background: #0a0e27;
        width: 280px;
        height: calc(100vh - 110px);
        transition: right 0.3s ease;
        padding: 40px 30px;
        box-shadow: -2px 0 20px rgba(0,0,0,0.3);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 25px;
    }

    .main-nav a {
        font-size: 18px;
    }
}