/* ============================================================================
   VARIÁVEIS E RESET
   ============================================================================ */

:root {
    --cor-primaria: #1a3a52;
    --cor-secundaria: #d4af37;
    --cor-fundo: #f5f3f0;
    --cor-texto: #333;
    --cor-texto-claro: #666;
    --cor-borda: #ddd;
}

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

html, body {
    height: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--cor-texto);
    line-height: 1.6;
    background-color: #fff;
}

/* ============================================================================
   TIPOGRAFIA - POPPINS PARA TÍTULOS
   ============================================================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    font-weight: 600;
}

p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ============================================================================
   CONTAINER
   ============================================================================ */

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

/* ============================================================================
   HEADER/NAVEGAÇÃO
   ============================================================================ */

.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav {
    display: flex;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.nav a {
    text-decoration: none;
    color: var(--cor-texto);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav a:hover {
    color: var(--cor-primaria);
}

.btn-whatsapp {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-whatsapp:hover {
    background-color: var(--cor-secundaria);
    color: var(--cor-primaria);
    transform: translateY(-2px);
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 58, 82, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
}

.hero-content h1 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 56px;
}

.hero-subtitle {
    font-size: 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--cor-secundaria);
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.95;
}

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

/* ============================================================================
   BOTÕES
   ============================================================================ */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.btn-primary {
    background-color: var(--cor-primaria);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--cor-secundaria);
    color: var(--cor-primaria);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #fff;
    color: var(--cor-primaria);
}

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

/* ============================================================================
   SERVIÇOS PREVIEW - CENTRALIZADO
   ============================================================================ */

.servicos-preview {
    padding: 80px 0;
    background-color: #fff;
}

.servicos-preview h2 {
    text-align: center;
    color: var(--cor-primaria);
    margin-bottom: 50px;
}

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

.servico-card {
    background: var(--cor-fundo);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--cor-secundaria);
    text-align: center;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.servico-card h3 {
    color: var(--cor-primaria);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.servico-card p {
    color: var(--cor-texto-claro);
    line-height: 1.8;
    text-align: center;
}

/* ============================================================================
   PIGAT DESTAQUE
   ============================================================================ */

.pigat-destaque {
    background: linear-gradient(135deg, var(--cor-primaria) 0%, #0f2438 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.pigat-destaque h2 {
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.pigat-desc {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ============================================================================
   MEDIA SECTION - VÍDEO E IMAGEM
   ============================================================================ */

.media-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.media-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.video-item {
    background-color: #000;
}

.media-video {
    width: 100%;
    height: auto;
    display: block;
    background-color: #000;
}

.image-item {
    overflow: hidden;
}

.media-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.media-item:hover .media-image {
    transform: scale(1.05);
}

/* ============================================================================
   CTA FINAL
   ============================================================================ */

.cta-final {
    background: linear-gradient(135deg, var(--cor-primaria) 0%, #0f2438 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.cta-final h2 {
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.cta-final p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ============================================================================
   PÁGINA DE CONTEÚDO
   ============================================================================ */

.page-content {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.page-content h1 {
    color: var(--cor-primaria);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.intro-text {
    font-size: 18px;
    color: var(--cor-texto-claro);
    margin-bottom: 40px;
    line-height: 1.8;
}

.servicos-completo {
    margin-top: 40px;
}

.servico-item {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--cor-secundaria);
    transition: all 0.3s ease;
}

.servico-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.servico-item h2 {
    color: var(--cor-primaria);
    font-size: 28px;
    margin-bottom: 25px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.servico-item ul {
    list-style: none;
    padding: 0;
}

.servico-item li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--cor-texto-claro);
    line-height: 1.7;
}

.servico-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--cor-secundaria);
    font-weight: bold;
    font-size: 18px;
}

/* ============================================================================
   DESTAQUE BENEFÍCIOS PIGAT
   ============================================================================ */

.servico-item.destaque-beneficios {
    background: linear-gradient(135deg, var(--cor-primaria) 0%, #0f2438 100%);
    color: #fff;
}

.servico-item.destaque-beneficios h2 {
    color: #fff;
    text-align: left;
}

.servico-item.destaque-beneficios ul li {
    color: rgba(255, 255, 255, 0.9);
}

.servico-item.destaque-beneficios ul li:before {
    color: var(--cor-secundaria);
}

/* ============================================================================
   CTA PIGAT BOTTOM
   ============================================================================ */

.pigat-cta-bottom {
    background: linear-gradient(135deg, var(--cor-primaria) 0%, #0f2438 100%);
    color: #fff;
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 60px;
}

.pigat-cta-bottom h2 {
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.pigat-cta-bottom p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ============================================================================
   CONTATO
   ============================================================================ */

.contato-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contato-info-section h2,
.contato-form-section h2 {
    color: var(--cor-primaria);
    font-size: 28px;
    margin-bottom: 30px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.info-card {
    background: var(--cor-fundo);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
    border-left: 4px solid var(--cor-secundaria);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.info-icon {
    font-size: 40px;
    min-width: 50px;
    text-align: center;
}

.info-content {
    flex: 1;
}

.info-content h4 {
    color: var(--cor-primaria);
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.info-link {
    color: var(--cor-secundaria);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 5px;
}

.info-link:hover {
    color: var(--cor-primaria);
}

.info-desc {
    color: var(--cor-texto-claro);
    font-size: 13px;
    margin: 0;
}

/* ============================================================================
   FORMULÁRIO
   ============================================================================ */

.contato-form {
    background: var(--cor-fundo);
    padding: 40px;
    border-radius: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--cor-primaria);
    font-weight: 600;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--cor-borda);
    border-radius: 5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--cor-primaria);
    box-shadow: 0 0 0 3px rgba(26, 58, 82, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a3a52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 40px;
}

/* ============================================================================
   FOOTER - CORES BRANCAS
   ============================================================================ */

footer {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 60px;
}

footer h4 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    font-size: 16px;
}

footer p {
    color: #fff;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

footer a:hover {
    color: var(--cor-secundaria);
}

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

.footer-section {
    color: #fff;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--cor-secundaria);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

/* ============================================================================
   RESPONSIVO
   ============================================================================ */

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

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

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

    .hero-description {
        font-size: 16px;
    }

    .nav {
        gap: 20px;
    }

    .nav a {
        font-size: 14px;
    }

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

    .servico-card {
        text-align: center;
    }

    .media-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .contato-form {
        padding: 25px;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        font-size: 35px;
    }

    .info-link {
        display: inline-block;
    }

    .pigat-cta-bottom {
        padding: 40px 20px;
    }

    .cta-final {
        padding: 50px 0;
    }

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

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

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

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

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .nav {
        gap: 15px;
        font-size: 12px;
    }

    .servicos-preview {
        padding: 50px 0;
    }

    .pigat-destaque {
        padding: 50px 0;
    }

    .media-section {
        padding: 50px 0;
    }

    .contato-container {
        gap: 30px;
    }

    .info-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .contato-form {
        padding: 20px;
    }

    .pigat-cta-bottom {
        padding: 30px 20px;
    }

    .servico-item {
        padding: 25px;
    }

    .servico-item h2 {
        font-size: 22px;
    }

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

    footer h4 {
        font-size: 15px;
    }

    footer p {
        font-size: 13px;
    }
}
