/* ===== VARIÁVEIS CSS ===== */
:root {
    --primary-dark: #001a33;
    --primary-navy: #003d66;
    --secondary-navy: #0052a3;
    --accent-cyan: #00d4ff;
    --accent-purple: #6366f1;
    --dark-bg: #0a0e27;
    --black: #000000;
    --gray-dark: #1a1a2e;
    --gray-medium: #4a4a6a;
    --gray-light: #d0d0d0;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s ease;
}

/* ===== RESET E ESTILOS GLOBAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

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

/* ===== HEADER E NAVEGAÇÃO ===== */
.header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 50%, var(--black) 100%);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar {
    padding: 1rem 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

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

.logo-text {
    background: linear-gradient(135deg, #00d4ff, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #6366f1);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-cta {
    background: linear-gradient(135deg, #6366f1, #00d4ff);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 30%, var(--black) 60%, var(--gray-dark) 100%);
    color: var(--white);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #00d4ff);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* ===== SERVIÇOS RÁPIDOS ===== */
.servicos-rapidos {
    padding: 60px 20px;
    background: linear-gradient(180deg, #f5f7fa 0%, var(--white) 100%);
}

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

.servico-rapido {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--gray-light);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.servico-rapido:hover {
    transform: translateY(-5px);
    border: 2px solid #00d4ff;
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
}

.servico-rapido h3 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.servico-rapido p {
    color: var(--text-light);
}

/* ===== SEÇÃO NOSSOS SERVIÇOS ===== */
.nossos-servicos {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0, 26, 51, 0.05) 0%, rgba(0, 82, 163, 0.05) 50%, rgba(26, 26, 46, 0.05) 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

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

.servico-card-grande {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.servico-card-grande:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: #00d4ff;
}

.servico-card-grande img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.servico-card-grande:hover img {
    transform: scale(1.05);
}

.servico-card-grande h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-navy);
    font-size: 1.5rem;
}

.servico-card-grande p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 50%, var(--black) 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== PÁGINA HISTÓRIA ===== */
.historia-content {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(0, 26, 51, 0.05) 0%, rgba(0, 82, 163, 0.05) 50%, rgba(26, 26, 46, 0.05) 100%);
    min-height: 100vh;
}

.historia-section {
    margin-bottom: 3rem;
}

.historia-section h2 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.historia-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.valor-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #00d4ff;
}

.valor-card h3 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.valor-card p {
    color: var(--text-light);
}

/* ===== PÁGINA SERVIÇOS ===== */
.servicos-page {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(0, 26, 51, 0.05) 0%, rgba(0, 82, 163, 0.05) 50%, rgba(26, 26, 46, 0.05) 100%);
    min-height: 100vh;
}

.servico-detalhado {
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.servico-detalhado:nth-child(even) {
    direction: rtl;
}

.servico-detalhado:nth-child(even) > * {
    direction: ltr;
}

.servico-detalhado img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.servico-detalhado h2 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.servico-detalhado p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.servico-detalhado ul {
    list-style: none;
    margin-top: 1rem;
}

.servico-detalhado li {
    color: #00d4ff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.servico-detalhado li::before {
    content: "✓ ";
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .servico-detalhado {
        grid-template-columns: 1fr;
    }

    .servico-detalhado:nth-child(even) {
        direction: ltr;
    }
}

/* ===== PÁGINA EXCELÊNCIA ===== */
.excelencia-content {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(0, 26, 51, 0.05) 0%, rgba(0, 82, 163, 0.05) 50%, rgba(26, 26, 46, 0.05) 100%);
    min-height: 100vh;
}

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

.diferencial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.diferencial-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--white);
}

.diferencial-card h3 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.diferencial-card p {
    color: var(--text-light);
}

/* ===== PÁGINA CONTATO ===== */
.contato-content {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(0, 26, 51, 0.05) 0%, rgba(0, 82, 163, 0.05) 50%, rgba(26, 26, 46, 0.05) 100%);
    min-height: 100vh;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contato-info {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--gray-light);
}

.contato-info h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.contato-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contato-info a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
}

.contato-info a:hover {
    color: #6366f1;
}

.formulario {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--gray-light);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

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

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

.btn-submit {
    background: linear-gradient(135deg, #6366f1, #00d4ff);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

@media (max-width: 768px) {
    .contato-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 50%, var(--black) 100%);
    color: var(--white);
    padding: 60px 20px 20px;
}

/* ===== AVALIAÇÕES ===== */
.avaliacoes-section {
    padding: 80px 20px;
    background: var(--white);
}

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

.avaliacao-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #00d4ff;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.avaliacao-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.avaliacao-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.avaliacao-texto {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.6;
}

.avaliacao-autor {
    color: var(--primary-navy);
    font-weight: 600;
}

/* ===== BOTÃO FLUTUANTE ===== */
.btn-flutuante {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #6366f1, #00d4ff);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-flutuante:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

@media (max-width: 768px) {
    .btn-flutuante {
        bottom: 20px;
        right: 20px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #00d4ff;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 0.5rem;
}

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

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

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

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

.social-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 5px;
}

.social-links a:hover {
    background: rgba(0, 212, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .navbar-content {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-menu {
        flex-basis: 100%;
        gap: 1rem;
        justify-content: space-around;
        order: 3;
    }

    .btn-cta {
        flex-basis: 100%;
        text-align: center;
    }

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

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

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

    .servicos-grid,
    .servicos-cards,
    .valores-grid,
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

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

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }

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

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

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

    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}
