/*
Theme Name: NEXTYR
Theme URI: https://nextyr.com.br
Author: ALT Sistemas
Author URI: https://altsistemas.com.br
Description: Tema profissional para landing page do NEXTYR - Sistema de Gestão para Cartórios
Version: 3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nextyr
*/

/* ===================================
   CSS VARIABLES - CORES DO SISTEMA
   =================================== */
:root {
    --primary: #16a085;
    --primary-dark: #138d75;
    --secondary: #3498db;
    --secondary-dark: #2980b9;
    --dark: #2c3e50;
    --darker: #1a252f;
    --light-bg: #f8f9fa;
    --border: #e0e0e0;
    --text: #34495e;
    --text-light: #7f8c8d;
    --white: #ffffff;
}

/* ===================================
   GLOBAL STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ===================================
   SECTION STYLES
   =================================== */
.section {
    padding: 100px 0;
}

.section-light {
    background: var(--light-bg);
}

.section-white {
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    background: #e8f8f5;
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(22,160,133,0.2);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   BUTTONS
   =================================== */
.btn-primary-teal {
    background: var(--primary);
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-primary-teal:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22,160,133,0.25);
    color: white;
}

.btn-outline-blue {
    background: white;
    color: var(--secondary);
    padding: 18px 40px;
    border-radius: 8px;
    border: 2px solid var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-outline-blue:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 50px 0;
    }
}
