/*
Theme Name: TripKamp
Author: Manus
Description: Tema WordPress personalizado para o projeto TripKamp.
Version: 1.0
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-branding {
    text-align: center;
    margin-bottom: 1rem;
}

.site-branding img {
    max-height: 60px;
    width: auto;
}

/* Navigation */
.main-navigation {
    text-align: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.main-navigation a:hover {
    background-color: #6c5ce7;
    color: #fff;
}

/* Content */
#wrapper {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    flex: 1;
}

.content {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.content h1, .content h2 {
    color: #2d3436;
    margin-bottom: 1rem;
}

.content h1 {
    font-size: 2.5rem;
    font-weight: 300;
}

.content h2 {
    font-size: 2rem;
    font-weight: 400;
}

.content p {
    margin-bottom: 1rem;
    color: #636e72;
}

/* Footer */
.site-footer {
    background: #2d3436;
    color: #ddd;
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
}

.site-info p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .content {
        padding: 1rem;
    }
    
    .content h1 {
        font-size: 2rem;
    }
    
    .content h2 {
        font-size: 1.5rem;
    }
}

/* Support Points Styles */
.support-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-point-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.support-point-card:hover {
    transform: translateY(-5px);
}

.support-point-type {
    display: inline-block;
    background: #6c5ce7;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.youtube-link {
    display: inline-block;
    background: #ff6b6b;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.youtube-link:hover {
    background: #e55656;
}


