/* Main Styles for Pin-Up Brasil Website
   Author: Cascade AI
   Date: 2025-07-18
   Description: Modern, responsive design for Pin-Up Brasil betting website
*/

/* === Base Styles === */
:root {
    /* Primary Colors */
    --primary: #2b60de;
    --primary-dark: #1e429f;
    --secondary: #ff6b35;
    --secondary-dark: #e54e1b;
    
    /* Neutral Colors */
    --dark: #1a1a2e;
    --light: #f7f7f7;
    --gray: #707070;
    --light-gray: #e0e0e0;
    
    /* Font Family */
    --main-font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --heading-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--main-font);
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    line-height: 1.2;
    margin-bottom: var(--space-md);
    font-weight: 700;
    color: var(--dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: var(--space-lg);
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

/* === Container === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* === Button Styles === */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.primary {
    background-color: var(--primary);
    color: white;
}

.primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.secondary {
    background-color: var(--secondary);
    color: white;
}

.secondary:hover {
    background-color: var(--secondary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.cta-center {
    text-align: center;
    margin: var(--space-xl) 0;
}

/* === Header === */
header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo img {
    width: 60px;
    height: 60px;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary);
}

nav ul {
    display: flex;
    gap: var(--space-lg);
}

nav ul li a {
    font-weight: 600;
    position: relative;
}

nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    transition: all 0.3s ease;
}

/* === Hero Section === */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: var(--space-xxl) 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: var(--space-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* === Features Section === */
.features {
    padding: var(--space-xxl) 0;
    background-color: white;
    text-align: center;
}

.features h2 {
    margin-bottom: var(--space-xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

/* === Games Section === */
.games {
    padding: var(--space-xxl) 0;
    background-color: var(--light);
    text-align: center;
}

.games h2 {
    margin-bottom: var(--space-md);
}

.games > p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-xl);
}

.game-category {
    margin-bottom: var(--space-xl);
}

.game-category h3 {
    margin-bottom: var(--space-lg);
    position: relative;
    display: inline-block;
}

.game-category h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.game-card {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    background-color: white;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: left;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.game-card h4 {
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.game-card a {
    display: inline-block;
    margin-top: var(--space-md);
    font-weight: 600;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.game-card a:hover {
    color: var(--secondary-dark);
    text-decoration: underline;
}

/* === Sports Section === */
.sports {
    padding: var(--space-xxl) 0;
    background-color: white;
    text-align: center;
}

.sports h2 {
    margin-bottom: var(--space-md);
}

.sports > p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-xl);
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.sport-card {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: left;
}

.sport-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.sport-card h3 {
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.live-betting {
    margin-top: var(--space-xl);
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white;
    border-radius: var(--radius-lg);
}

.live-betting h3 {
    color: white;
    margin-bottom: var(--space-sm);
}

/* === Download Section === */
.download {
    padding: var(--space-xxl) 0;
    background-color: var(--light);
    text-align: center;
}

.download h2 {
    margin-bottom: var(--space-md);
}

.download > p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-xl);
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.download-option {
    padding: var(--space-lg);
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: left;
}

.download-option h3 {
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.download-option .btn {
    margin: var(--space-md) 0;
}

.download-steps {
    margin-top: var(--space-lg);
}

.download-steps h4 {
    margin-bottom: var(--space-sm);
}

.download-steps ol {
    padding-left: var(--space-lg);
    list-style-type: decimal;
}

.download-steps li {
    margin-bottom: var(--space-xs);
}

/* === About Section === */
.about {
    padding: var(--space-xxl) 0;
    background-color: white;
}

.about h2 {
    text-align: center;
    margin-bottom: var(--space-md);
}

.about > p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.values {
    max-width: 800px;
    margin: 0 auto;
}

.values h3 {
    margin-bottom: var(--space-md);
}

.values ul {
    padding-left: var(--space-lg);
    list-style-type: disc;
}

.values li {
    margin-bottom: var(--space-sm);
}

/* === Contact Section === */
.contact {
    padding: var(--space-xxl) 0;
    background-color: var(--light);
    text-align: center;
}

.contact h2 {
    margin-bottom: var(--space-md);
}

.contact > p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-xl);
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-option {
    padding: var(--space-lg);
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.contact-option h3 {
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.faq {
    margin-top: var(--space-xl);
    text-align: left;
}

.faq h3 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.faq-item {
    padding: var(--space-lg);
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-md);
}

.faq-item h4 {
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

/* === Footer === */
footer {
    background-color: var(--dark);
    color: white;
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.footer-logo h3 {
    color: white;
    margin-bottom: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.footer-column h4 {
    color: var(--secondary);
    margin-bottom: var(--space-md);
}

.footer-column ul li {
    margin-bottom: var(--space-sm);
}

.footer-column ul li a {
    color: var(--light-gray);
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.payment-icons {
    display: flex;
    gap: var(--space-md);
}

/* === Responsive Design === */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        padding: var(--space-md);
        box-shadow: var(--shadow-md);
        flex-direction: column;
        align-items: center;
        z-index: 1000;
    }
    
    nav ul.active {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .feature-card, .game-card, .sport-card, .download-option, .contact-option {
        padding: var(--space-md);
    }
    
    .game-grid {
        grid-template-columns: 1fr;
    }
}
