/* ========================================
   MOTOFUCKER M.C. - Stylesheet
   Versão Estática para Hostinger
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    background-color: #0a0a0a;
    color: #E8E4D9;
    line-height: 1.6;
    overflow-x: hidden;
}

/* === TYPOGRAPHY === */
.hero-title {
    font-family: 'UnifrakturMaguntia', cursive;
    font-size: clamp(4rem, 12vw, 12rem);
    color: #E8E4D9;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-family: 'UnifrakturMaguntia', cursive;
    font-size: clamp(2rem, 6vw, 6rem);
    color: #E8E4D9;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
}

.hero-location {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.2rem, 2vw, 2rem);
    color: #6B5E4F;
    letter-spacing: 0.15em;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 7rem);
    color: #8B0000;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
}

.section-subtitle {
    font-size: clamp(1.2rem, 2vw, 2rem);
    color: #6B5E4F;
    font-weight: 300;
    margin-bottom: 3rem;
}

/* === LAYOUT === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-dark {
    background-color: #111;
}

.section-light {
    background-color: #0a0a0a;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
    
    .section {
        padding: 8rem 0;
    }
}

/* === HERO SECTION === */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #6B5E4F;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 8px 0;
}

.scroll-wheel {
    width: 4px;
    height: 12px;
    background-color: #6B5E4F;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

/* === BUTTONS === */
.btn-primary {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    padding: 1rem 3rem;
    background-color: #8B0000;
    color: #E8E4D9;
    border: 2px solid #8B0000;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: #8B0000;
    color: #8B0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

/* === TEXT CONTENT === */
.text-content {
    font-size: clamp(1.2rem, 2vw, 2rem);
    line-height: 1.8;
}

.text-content p {
    margin-bottom: 1.5rem;
}

.text-muted {
    color: #6B5E4F;
}

.text-center {
    text-align: center;
}

/* === IMAGES === */
.img-featured {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 4px solid rgba(139, 0, 0, 0.2);
}

/* === MAP === */
.map-container {
    background-color: #111;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 4px solid #1a1a1a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.map-iframe {
    border-radius: 0.5rem;
    width: 100%;
    aspect-ratio: 16/9;
}

.map-caption {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 3vw, 3rem);
    letter-spacing: 0.1em;
    text-align: center;
    color: #E8E4D9;
}

/* === FORM PLACEHOLDER === */
.form-placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 3px dashed #8B0000;
    border-radius: 1rem;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 2rem;
}

.form-placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.form-placeholder h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #8B0000;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.form-placeholder p {
    font-size: 1.2rem;
    color: #6B5E4F;
    margin-bottom: 2rem;
}

.form-placeholder-code {
    background-color: #000;
    border: 1px solid #333;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
    overflow-x: auto;
}

.form-placeholder-code code {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #8B0000;
    line-height: 1.8;
}

.form-placeholder-help {
    background-color: rgba(139, 0, 0, 0.1);
    border-left: 4px solid #8B0000;
    padding: 1.5rem;
    text-align: left;
    font-size: 1rem;
    line-height: 1.8;
    color: #E8E4D9;
}

.form-placeholder-help strong {
    color: #8B0000;
    display: block;
    margin-bottom: 0.5rem;
}

/* === FOOTER === */
.footer {
    background-color: #0a0a0a;
    border-top: 4px solid #8B0000;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

.footer-brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: #E8E4D9;
}

.footer-brand-location {
    font-size: 0.9rem;
    color: #6B5E4F;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-links {
        text-align: right;
    }
}

.footer-link {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    color: #E8E4D9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #8B0000;
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 2rem;
    text-align: center;
}

.footer-motto {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 3vw, 3rem);
    letter-spacing: 0.1em;
    color: #8B0000;
}

/* === RESPONSIVE === */
@media (max-width: 767px) {
    .section {
        padding: 4rem 0;
    }
    
    .container,
    .container-narrow {
        padding: 0 1.5rem;
    }
    
    .grid-2 {
        gap: 2rem;
    }
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #8B0000;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a00000;
}
