/* ========== VARIÁVEIS DE CORES ========== */
:root {
    --cor-primaria: #2c3f4d;      /* Azul petróleo escuro */
    --cor-secundaria: #ebf1ea;     /* Verde claro suave */
    --cor-destaque: #5a7a8f;       /* Azul intermediário */
    --cor-texto-claro: #ebf1ea;
    --cor-texto-escuro: #2c3f4d;
    --cor-acento: #7ba591;         /* Verde suave para acentos */
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--cor-primaria);
    color: var(--cor-secundaria);
    line-height: 1.6;
}

/* ========== HEADER E NAVEGAÇÃO ========== */
header {
    background-color: rgba(44, 63, 77, 0.95);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--cor-acento);
}

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

.nav-links a {
    color: var(--cor-secundaria);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* ========== SEÇÃO HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    background: linear-gradient(rgba(44, 63, 77, 0.85), rgba(44, 63, 77, 0.85)), 
                url('Apolov1.png');
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 3.8rem);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    color: var(--cor-secundaria);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: clamp(1.1rem, 4vw, 1.9rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s backwards;
    color: var(--cor-secundaria);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: var(--cor-acento);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(123, 165, 145, 0.3);
    background-color: #8bb9a1;
}

/* ========== CONTAINERS DE SEÇÕES ========== */
section {
    width: 100%;
    padding: 100px 0;
    margin: 0;
}

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

/* Cores de fundo para cada seção */
#servicos {
    background-color: #ebf1ea; /* Fundo claro */
}

#servicos h2,
#servicos .service-card h3 {
    color: var(--cor-primaria);
}

#servicos .service-card p {
    color: #3a4f5e;
}

#precos {
    background-color: #d4ddd8; /* Tom intermediário */
}

#precos h2 {
    color: var(--cor-primaria);
}

#sobre {
    background-color: var(--cor-primaria); /* Fundo escuro */
}

#contato {
    background-color: #1e2d38; /* Fundo mais escuro */
}

/* ========== TÍTULOS ========== */
h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

/* ========== CARDS DE SERVIÇOS ========== */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid rgba(123, 165, 145, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(44, 63, 77, 0.15);
    border-color: var(--cor-acento);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--cor-primaria);
}

.service-card p {
    opacity: 0.9;
    color: #3a4f5e;
}

/* ========== ÍCONES DOS TÍTULOS ========== */
.icone-titulo {
    width: 40px;
    height: 40px;
    vertical-align: middle;
    margin-right: 10px;
    opacity: 0.9;
}

/* ========== SEÇÃO DE PREÇOS ========== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background-color: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    border: 2px solid rgba(123, 165, 145, 0.2);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(44, 63, 77, 0.15);
    border-color: var(--cor-acento);
}

.pricing-card.featured {
    border-color: var(--cor-acento);
    background-color: rgba(123, 165, 145, 0.05);
}

.pricing-card.featured .badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--cor-acento);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--cor-primaria);
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--cor-primaria);
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: #5a7a8f;
    opacity: 0.8;
}

.pricing-card .description {
    opacity: 0.85;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    flex-grow: 1;
    color: #3a4f5e;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(44, 63, 77, 0.1);
    opacity: 0.9;
    color: #3a4f5e;
}

.features-list li:before {
    content: "✓ ";
    color: var(--cor-acento);
    font-weight: bold;
    margin-right: 0.5rem;
}

.pricing-button {
    background-color: rgba(123, 165, 145, 0.1);
    color: var(--cor-primaria);
    padding: 1rem 2rem;
    border: 2px solid var(--cor-acento);
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    display: block;
}

.pricing-button:hover {
    background-color: var(--cor-acento);
    color: white;
    transform: scale(1.05);
}

.pricing-card.featured .pricing-button {
    background-color: var(--cor-acento);
    color: white;
}

.pricing-card.featured .pricing-button:hover {
    background-color: #8bb9a1;
}

/* ========== SEÇÃO SOBRE ========== */
.about {
    background-color: rgba(90, 122, 143, 0.15);
    border-radius: 15px;
    padding: 3rem;
    border: 2px solid rgba(123, 165, 145, 0.2);
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* ========== FORMULÁRIO DE CONTATO ========== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--cor-secundaria);
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(123, 165, 145, 0.3);
    border-radius: 8px;
    background-color: rgba(235, 241, 234, 0.1);
    color: var(--cor-secundaria);
    font-size: 1rem;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--cor-acento);
    background-color: rgba(235, 241, 234, 0.15);
}

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

/* ========== BOTÃO WHATSAPP ========== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: white;
}

.whatsapp-float::before {
    content: "Fale conosco!";
    position: absolute;
    right: 70px;
    background-color: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    font-size: 0.85rem;
}

.whatsapp-float:hover::before {
    opacity: 1;
}

/* ========== FOOTER ========== */
footer {
    text-align: center;
    padding: 2rem;
    background-color: rgba(30, 45, 56, 0.8);
    margin-top: 0;
}

/* ========== ANIMAÇÕES ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    h2 {
        font-size: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
/* ========== SEÇÃO DASHBOARD LOOKER STUDIO ========== */
.looker-iframe {
    width: 100%;
    height: 80vh;  /* ← 80% da altura da tela (viewport height) */
    min-height: 400px;  /* ← Altura mínima para não ficar muito pequeno */
    max-height: 1000px;  /* ← Altura máxima para telas muito grandes */
    border-radius: 10px;
    display: block;
}

.dashboard-container {
    background-color: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 0 auto 2rem;
    max-width: 95%;  /* ← Afastamento das bordas (5% de cada lado) */
    border: 2px solid rgba(123, 165, 145, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .looker-iframe {
        height: 70vh;  /* ← Um pouco menor em tablets */
        min-height: 350px;
    }
    
    .dashboard-container {
        padding: 1rem;
        max-width: 95%;  /* ← Mantém o afastamento */
    }
}

@media (max-width: 480px) {
    .looker-iframe {
        height: 60vh;  /* ← Menor ainda em celulares */
        min-height: 300px;
    }
    
    .dashboard-container {
        max-width: 92%;  /* ← Pouco mais de espaço nas laterais */
    }
}
/* ========== SEÇÃO DEPOIMENTOS ========== */
#depoimentos {
    background-color: #d4ddd8;
}

#depoimentos h2 {
    color: var(--cor-primaria);
}

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

.depoimento-card {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(123, 165, 145, 0.2);
}

.depoimento-card p {
    font-style: italic;
    color: #3a4f5e;
    margin-bottom: 1rem;
}

.cliente {
    font-weight: bold;
    color: var(--cor-primaria);
}
