/*
Theme Name: ABISTEC Child
Description: Tema filho personalizado da ABISTEC baseado no Hello Elementor
Author: ABISTEC Serviços Tecnológicos
Template: hello-elementor
Version: 1.0.0
*/

/* ========================================
   PALETA DE CORES ABISTEC
   ======================================== */
:root {
    --abistec-gold: #D4AF37;
    --abistec-gold-dark: #BF9B30;
    --abistec-brown: #5c3b27;
    --abistec-brown-dark: #3d281a;
    --abistec-green: #3b7b2b;
    --abistec-green-dark: #2c5e20;
    --abistec-white: #ffffff;
    --abistec-light: #f8f9fa;
    --abistec-gray: #6c757d;
    --abistec-dark: #333333;
    --abistec-black: #000000;
}

/* ========================================
   RESET E BASE
   ======================================== */
* {
    box-sizing: border-box;
}

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

/* ========================================
   TIPOGRAFIA
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--abistec-brown);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--abistec-gray);
}

/* ========================================
   BOTÕES
   ======================================== */
.btn-abistec {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--abistec-gold) 0%, var(--abistec-gold-dark) 100%);
    color: var(--abistec-white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-abistec:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: var(--abistec-white);
}

.btn-abistec-outline {
    background: transparent;
    border: 2px solid var(--abistec-gold);
    color: var(--abistec-gold);
    box-shadow: none;
}

.btn-abistec-outline:hover {
    background: var(--abistec-gold);
    color: var(--abistec-white);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-abistec-green {
    background: linear-gradient(135deg, var(--abistec-green) 0%, var(--abistec-green-dark) 100%);
    box-shadow: 0 4px 15px rgba(59, 123, 43, 0.3);
}

.btn-abistec-green:hover {
    box-shadow: 0 6px 20px rgba(59, 123, 43, 0.4);
}

/* ========================================
   HEADER PERSONALIZADO
   ======================================== */
.abistec-header {
    background: var(--abistec-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.abistec-logo {
    max-height: 60px;
    width: auto;
    background: white;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.abistec-nav li {
    margin-left: 30px;
}

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

.abistec-nav a:hover {
    color: var(--abistec-gold);
}

/* ========================================
   SEÇÕES
   ======================================== */
.section-abistec {
    padding: 80px 0;
}

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

.section-abistec-gold {
    background: linear-gradient(135deg, var(--abistec-gold) 0%, var(--abistec-gold-dark) 100%);
    color: var(--abistec-white);
}

.section-abistec-brown {
    background: linear-gradient(135deg, var(--abistec-brown) 0%, var(--abistec-brown-dark) 100%);
    color: var(--abistec-white);
}

/* ========================================
   CARDS
   ======================================== */
.card-abistec {
    background: var(--abistec-white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--abistec-gold);
}

.card-abistec:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-abistec h3 {
    color: var(--abistec-brown);
    margin-bottom: 15px;
}

.card-abistec-icon {
    font-size: 2.5rem;
    color: var(--abistec-gold);
    margin-bottom: 20px;
}

/* ========================================
   GRID
   ======================================== */
.grid-abistec {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.grid-abistec-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-abistec-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-abistec-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-abistec {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(92, 59, 39, 0.1) 100%);
    padding: 80px 0;
    text-align: center;
    width: 100%;
    margin: 0;
}

.hero-abistec .container {
    max-width: 100%;
    padding: 0 40px;
}

.hero-abistec h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--abistec-brown) 0%, var(--abistec-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-abistec p {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto;
    color: var(--abistec-gray);
}

/* ========================================
   FOOTER PERSONALIZADO
   ======================================== */
.abistec-footer {
    background: var(--abistec-brown);
    color: var(--abistec-white);
    padding: 50px 0 20px;
}

.abistec-footer h3 {
    color: var(--abistec-gold);
    margin-bottom: 20px;
}

.abistec-footer a {
    color: var(--abistec-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.abistec-footer a:hover {
    color: var(--abistec-gold);
}

.abistec-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */
@media (max-width: 768px) {
    .hero-abistec {
        padding: 60px 0;
    }
    
    .hero-abistec .container {
        padding: 0 20px;
    }
    
    .hero-abistec h1 {
        font-size: 2.5rem;
    }
    
    .hero-abistec p {
        font-size: 1.1rem;
    }
    
    .abistec-nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    .abistec-nav li {
        margin: 10px 0;
    }
    
    .grid-abistec-2,
    .grid-abistec-3,
    .grid-abistec-4 {
        grid-template-columns: 1fr;
    }
    
    .section-abistec {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-abistec {
        padding: 40px 0;
    }
    
    .hero-abistec .container {
        padding: 0 15px;
    }
    
    .hero-abistec h1 {
        font-size: 2rem;
    }
    
    .hero-abistec p {
        font-size: 1rem;
    }
    
    .card-abistec {
        padding: 20px;
    }
    
    .btn-abistec {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ========================================
   UTILITÁRIOS
   ======================================== */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--abistec-gold);
}

.text-brown {
    color: var(--abistec-brown);
}

.text-green {
    color: var(--abistec-green);
}

.bg-gold {
    background-color: var(--abistec-gold);
}

.bg-brown {
    background-color: var(--abistec-brown);
}

.bg-green {
    background-color: var(--abistec-green);
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
