/*
Theme Name: Alares Landing Pages
Theme URI: https://alaresinternet.com.br
Author: Alares
Author URI: https://alaresinternet.com.br
Description: Tema WordPress para Landing Pages institucionais da Alares
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alares-lps
Tags: landing-page, one-column, custom-colors, custom-menu, featured-images, flexible-header
*/

/* === RESET E BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #5B3CFF;
    --color-secondary: #00E5A0;
    --color-text: #1A1A1A;
    --color-text-light: #666666;
    --color-bg: #FFFFFF;
    --color-bg-light: #F5F5F7;
    --color-bg-dark: #5B3CFF;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Carbona', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* === TIPOGRAFIA === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--transition);
}

a:hover {
    color: var(--color-secondary);
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--color-secondary);
    color: var(--color-text);
}

.btn-primary:hover {
    background: #00cc8e;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 229, 160, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
}

.btn-white {
    background: white;
    color: var(--color-primary);
}

.btn-white:hover {
    background: var(--color-bg-light);
    transform: translateY(-2px);
}

/* === HEADER === */
.site-header {
    background: var(--color-primary);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 40px;
    width: auto;
}

.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* === SECTIONS === */
section {
    padding: 80px 0;
}

section.no-padding-top {
    padding-top: 0;
}

section.no-padding-bottom {
    padding-bottom: 0;
}

/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mt-4 {
    margin-top: 4rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .header-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    section {
        padding: 40px 0;
    }
}
