﻿/* Guia Article Specific Styles */
body {
    background-color: #fff;
}

.guia-container {
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background: #fff;
    padding-bottom: 80px;
}

/* Hero */
.guia-hero {
    text-align: center;
    padding: 120px 20px 80px 20px;
    background: #fff;
}

.guia-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.guia-category {
    font-size: 0.85rem;
    font-weight: 700;
    color: #D9953D;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.guia-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #020B1C;
    line-height: 1.2;
    margin-bottom: 30px;
}

.guia-author {
    font-size: 1rem;
    color: #64748b;
}

/* Index Box */
.guia-index-container {
    max-width: 1100px;
    margin: 0 auto 80px auto;
    text-align: center;
    padding: 0 20px;
}

.guia-index-container h2 {
    font-size: 2rem;
    color: #020B1C;
    margin-bottom: 40px;
}

.guia-index-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.guia-index-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #020B1C;
    transition: transform 0.3s ease;
}

.guia-index-card:hover {
    transform: translateY(-5px);
}

.guia-index-card .icon-wrap {
    width: 80px;
    height: 80px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    color: #020B1C;
    font-size: 2rem;
    border: 2px solid #e2e8f0;
}

.guia-index-card .corner-q {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #D9953D;
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
}

.guia-index-card span {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}

.guia-intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
}

.guia-intro-text p {
    margin-bottom: 20px;
}

/* Banners */
.guia-section {
    margin-bottom: 60px;
}

.guia-banner {
    width: 100%;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    overflow: hidden;
    position: relative;
}

.guia-banner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(217, 149, 61, 0.1);
    left: -100px;
    bottom: -150px;
    z-index: 1;
}

.guia-banner::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 40px solid rgba(2, 11, 28, 0.03);
    right: 5%;
    top: -50px;
    z-index: 1;
}

.guia-banner-light {
    background-color: #f1f5f9;
}

.guia-banner-dark {
    background-color: #020B1C;
    color: #fff;
}
.guia-banner-dark::after { border-color: rgba(255,255,255,0.05); }

.guia-banner-gold {
    background-color: #D9953D;
}
.guia-banner-gold::before { background: rgba(255,255,255,0.15); }

.guia-banner-text {
    flex: 1;
    max-width: 600px;
    padding-right: 40px;
    z-index: 2;
}

.guia-banner h2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

.guia-banner-dark h2 { color: #fff; }

.guia-banner-icon {
    flex: 1;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.guia-banner-icon i {
    font-size: 15rem;
    color: #D9953D;
    opacity: 0.9;
}

.guia-banner-dark .guia-banner-icon i {
    color: #fff;
    opacity: 0.15;
}

.guia-banner-light .guia-banner-icon i {
    color: #020B1C;
    opacity: 0.1;
}

/* Text Content */
.guia-text-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #334155;
}

.guia-text-content p {
    margin-bottom: 25px;
}

.guia-text-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #020B1C;
    margin: 40px 0 20px 0;
}

.guia-text-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.guia-text-content li {
    margin-bottom: 15px;
}

.guia-text-content a {
    color: #D9953D;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.guia-text-content a:hover {
    border-color: #D9953D;
}

/* CTA */
.guia-cta-box {
    text-align: center; 
    margin-top: 50px; 
    padding: 50px 40px; 
    background: #f8fafc; 
    border-radius: 12px; 
    border: 1px solid #e2e8f0;
}

.guia-cta-box h3 {
    margin-top: 0;
}

/* Social Floating */
.guia-floating-social {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-btn:hover {
    transform: scale(1.1);
}

.sb-fb { background: #3b5998; }
.sb-wa { background: #25d366; }
.sb-in { background: #0077b5; }

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.2s; }

/* Mobile */
@media (max-width: 992px) {
    .guia-banner {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }
    .guia-banner-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .guia-banner h2 {
        font-size: 2.2rem;
    }
    .guia-index-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .guia-floating-social {
        display: none;
    }
    .guia-hero h1 {
        font-size: 2.2rem;
    }
}
@media (max-width: 600px) {
    .guia-index-grid {
        grid-template-columns: 1fr;
    }
}
