/* Estilos básicos */
:root {
    --primary-color: #0066cc;
    --primary-light: #3385d6;
    --primary-dark: #004c99;
    --text-color: #333;
    --bg-light: #f5f8ff;
    --bg-blue-50: #f0f7ff;
    --bg-blue-100: #e6f0ff;
    --bg-blue-200: #d1e4ff;
    --white: #ffffff;
}

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

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

/* Header */
header {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Estilos das seções */
section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

section:nth-child(odd) {
    background-color: var(--white);
}

section:nth-child(even) {
    background-color: var(--bg-blue-50);
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, var(--bg-blue-100) 0%, var(--bg-blue-50) 100%);
    padding: 120px 0 80px;
    margin-top: 70px;
}

/* Serviços section */
.servicos {
    background: var(--white);
}

/* Benefícios section */
.beneficios {
    background: var(--bg-blue-50);
}

/* Recursos section */
.features {
    background: var(--white);
}

/* Integrações section */
.integracoes {
    background: var(--bg-blue-50);
}

/* Segmentos section */
.segmentos {
    background: var(--white);
}

/* Sobre section */
.sobre {
    background: var(--bg-blue-50);
}

/* Suporte section */
.suporte {
    background: var(--white);
}

/* Outorgas section */
.outorgas {
    background: var(--bg-blue-50);
}

/* Contato section */
.contato {
    background: var(--white);
}

/* Títulos das seções */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
}

/* Efeitos de transição entre seções */
section {
    transition: background-color 0.3s ease;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Responsividade */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 20px;
    }
}

/* Reset e estilos globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Seções */
section {
    padding: 80px 0;
}

/* Títulos */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.5em;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Botão CTA */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white) !important;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    color: var(--white) !important;
}

/* Listas */
ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Imagens */
img {
    max-width: 100%;
    height: auto;
}

/* Espaçamento do header */
main {
    margin-top: 70px;
}

/* Utilitários */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.py-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/* Recursos Avançados */
.recursos-avancados {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.recurso-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.recurso-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.recurso-icon i {
    font-size: 24px;
    color: var(--white);
}

.recurso-card h3 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
}

.recurso-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.recurso-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recurso-lista li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #666;
}

.recurso-lista li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 14px;
}

/* Cores dos ícones */
.ura-icon {
    background-color: #FF6B6B;
}

.analise-icon {
    background-color: #4ECDC4;
}

.omnichannel-icon {
    background-color: #6C5CE7;
}

.gravacao-icon {
    background-color: #45B7D1;
}

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

/* Responsividade base */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.75em;
    }

    h3 {
        font-size: 1.25em;
    }

    .container {
        padding: 0 15px;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2em;
    }
}
