/* ============================================
   VILABROKER - CSS PÁGINAS DE GUIAS
   Estilo Blog de Viagem Profissional
   ============================================ */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Libre Franklin', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: #333333;
    background: #FFFFFF;
    -webkit-font-smoothing: antialiased;
}

/* === HERO SECTION === */
.guide-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    margin-bottom: 60px;
}

.guide-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.guide-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
    max-width: 800px;
    padding: 0 24px;
}

.guide-breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.guide-breadcrumb a {
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s;
}

.guide-breadcrumb a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.guide-hero h1 {
    font-size: 3.5rem;
    font-weight: 100;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.guide-subtitle {
    font-size: 1.3rem;
    font-weight: 200;
    margin-bottom: 24px;
    opacity: 0.95;
}

.guide-hero-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* === MAIN CONTAINER === */
.guide-page {
    background: #FAFAFA;
    padding: 60px 0;
}

.guide-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === SECTIONS === */
.guide-section {
    background: #FFFFFF;
    padding: 48px;
    margin-bottom: 32px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* === TIPOGRAFIA === */
.guide-section h2 {
    font-size: 2rem;
    font-weight: 200;
    color: #1a1a1a;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #E8E8E8;
}

.guide-section h3 {
    font-size: 1.4rem;
    font-weight: 300;
    color: #2a2a2a;
    margin-top: 32px;
    margin-bottom: 16px;
}

.guide-section h4 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #3a3a3a;
    margin-top: 24px;
    margin-bottom: 12px;
}

.guide-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.guide-section ul {
    margin: 24px 0;
    padding-left: 32px;
}

.guide-section li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #4a4a4a;
}

.guide-section strong {
    font-weight: 500;
    color: #1a1a1a;
}

/* === INFO BOX === */
.info-box {
    background: linear-gradient(135deg, #E3F2FD 0%, #FFFFFF 100%);
    border-left: 4px solid #2C7A81;
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
}

.info-box h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #2C7A81;
    margin-top: 0;
    margin-bottom: 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-item {
    padding: 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
}

.info-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 4px;
}

/* === TIP BOX === */
.tip-box {
    background: #FFF9E6;
    border-left: 4px solid #F57C00;
    padding: 20px 24px;
    border-radius: 8px;
    margin: 32px 0;
}

.tip-box strong {
    color: #E65100;
}

/* === TRANSPORT OPTIONS === */
.transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.transport-card {
    background: #FAFAFA;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #E8E8E8;
    transition: all 0.3s;
}

.transport-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.transport-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.transport-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 12px;
    color: #2C7A81;
}

.transport-card p {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: #555;
}

.transport-card strong {
    color: #333;
}

/* === ATTRACTIONS GRID === */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.attraction-card {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s;
}

.attraction-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    border-color: #2C7A81;
}

.attraction-card h3 {
    font-size: 1.15rem;
    font-weight: 400;
    color: #2C7A81;
    margin-top: 0;
    margin-bottom: 12px;
}

.attraction-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 16px;
}

.attraction-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #E8F5E9;
    color: #388E3C;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 400;
}

/* === RESTAURANTS GRID === */
.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.restaurant-card {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s;
}

.restaurant-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.restaurant-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 12px;
}

.restaurant-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 16px;
}

.restaurant-info {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid #F0F0F0;
    font-size: 0.85rem;
}

.restaurant-info span {
    padding: 6px 12px;
    background: #F5F5F5;
    border-radius: 12px;
    color: #666;
}

/* === TIPS GRID === */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.tip-card {
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #E8E8E8;
}

.tip-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.tip-card h3 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #2C7A81;
    margin-top: 0;
    margin-bottom: 12px;
}

.tip-card p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

/* === TOURS LIST === */
.tours-list {
    margin: 32px 0;
}

.tour-item {
    background: #FAFAFA;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #2C7A81;
}

.tour-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.tour-header h3 {
    font-size: 1.15rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
}

.tour-price {
    font-weight: 500;
    color: #2C7A81;
    font-size: 1.05rem;
}

.tour-duration {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 14px;
    background: #E8F5E9;
    color: #388E3C;
    border-radius: 12px;
    font-size: 0.85rem;
}

/* === ACCOMMODATION LIST === */
.accommodation-list {
    margin: 24px 0;
    padding-left: 32px;
}

.accommodation-list li {
    margin-bottom: 20px;
    padding-left: 8px;
}

/* === CTA SECTION === */
.guide-cta-section {
    background: linear-gradient(135deg, #2C7A81 0%, #1a4d52 100%);
    color: #FFFFFF;
    padding: 60px 48px;
    border-radius: 12px;
    text-align: center;
    margin-top: 48px;
}

.guide-cta-section h2 {
    color: #FFFFFF;
    border-bottom: none;
    margin-bottom: 16px;
}

.guide-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background: #FFFFFF;
    color: #2C7A81;
}

.btn-primary:hover {
    background: #F5F5F5;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

/* === WHATSAPP FLOAT === */
.whatsapp-float,
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .guide-hero {
        min-height: 350px;
    }
    
    .guide-hero h1 {
        font-size: 2.5rem;
    }
    
    .guide-subtitle {
        font-size: 1.1rem;
    }
    
    .guide-section {
        padding: 32px 24px;
    }
    
    .guide-section h2 {
        font-size: 1.6rem;
    }
    
    .guide-section h3 {
        font-size: 1.2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .transport-options {
        grid-template-columns: 1fr;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
    }
    
    .restaurants-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .guide-cta-section {
        padding: 40px 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .guide-container {
        padding: 0 16px;
    }
    
    .guide-hero h1 {
        font-size: 2rem;
    }
    
    .guide-section {
        padding: 24px 20px;
    }
    
    .guide-section h2 {
        font-size: 1.4rem;
    }
    
    .info-box,
    .tip-box {
        padding: 20px;
    }
}

/* === EXTRAS === */
.nightlife-list,
.accommodation-list {
    line-height: 1.8;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.season-card {
    background: #FAFAFA;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #E8E8E8;
}

.season-card h3 {
    font-size: 1.15rem;
    font-weight: 400;
    color: #2C7A81;
    margin-top: 0;
    margin-bottom: 16px;
}

.season-best,
.season-moderate {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 400;
}

.season-best {
    background: #E8F5E9;
    color: #388E3C;
}

.season-moderate {
    background: #FFF3E0;
    color: #F57C00;
}

.kite-info,
.kite-schools {
    margin: 32px 0;
}

.school-card {
    background: #FAFAFA;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #E8E8E8;
}

.school-card h4 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #2C7A81;
    margin-top: 0;
    margin-bottom: 12px;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.profile-card {
    padding: 28px;
    border-radius: 12px;
    border: 2px solid #E8E8E8;
}

.profile-card.perfect {
    background: linear-gradient(135deg, #E8F5E9 0%, #FFFFFF 100%);
    border-color: #388E3C;
}

.profile-card.notperfect {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFFFFF 100%);
    border-color: #F57C00;
}