:root {
    --primary-blue: #0035B5; 
    --secondary-red: #cc0000;
    --white: #ffffff;
    --black: #000000;
    --light-gray: #f4f4f4;  
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    line-height: 1.6;
    background-color: var(--light-gray);
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 1. HERO SECTION (Seção Inicial) */
.hero-section {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    min-height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
}

.hero-logo {
    width: 250px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 50%;
    border: 5px solid var(--white);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-subtext {
    font-size: 1.10rem;
    font-weight: 700;
    color: #ffd700;
}

/* 2. SEÇÃO DE MÍDIA E REDES SOCIAIS */
.media-section {
    padding: 60px 0;
    background-color: var(--white);
}

.media-group-inline {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 40px;
    align-items: flex-start; 
}

.video-container,
.instagram-mockup {
    flex: 0 0 400px; 
    min-width: 300px;
    margin-bottom: 0; 
    text-align: center;
    padding: 0px;
    border-radius: 10px;
}

.video-container video {
    width: 84.5%;
    height: auto;
    border-radius: 10px;
}

.video-caption {
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-red);
}

.instagram-mockup {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
}

.instagram-link {
    display: block;
    text-decoration: none;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 120%; 
}

.instagram-screen {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.instagram-link:hover .instagram-screen {
    transform: scale(1.05);
}

.mockup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 1.2rem;
    font-weight: 700;
}

.instagram-link:hover .mockup-overlay {
    opacity: 1;
}

.whatsapp-float {
    position: fixed;
    width: 180px; 
    height: 180px; 
    bottom: 40px;
    right: 40px;
    border-radius: 5px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: block; 
    padding: 0;
    transition: all 0.3s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.10);
    width: 192px;
    height: 200px;
}

.whatsapp-screen {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: inherit; 
}

.whatsapp-bubble {
    visibility: hidden;
    opacity: 0;
    width: 250px;
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    right: 190px; 
    bottom: 5px; 
    transition: opacity 0.3s, visibility 0.3s;
    font-size: 1rem;
    font-weight: 700;
}

.whatsapp-float:hover .whatsapp-bubble {
    visibility: visible;
    opacity: 1;
}

/* Footer */
footer {
    background-color: #333;
    color: var(--white);
    text-align: center;
    font-size: 0.9rem;
}

.main-footer a { /* NOVO: Para estilizar o link do Dmax */
    color: #ffd700;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.main-footer a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Responsividade (Ajustes para telas menores) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }
    
    .media-group-inline {
        flex-direction: column;
    }

    .video-container,
    .instagram-mockup {
        flex: 1 1 100%;
        min-width: unset;
        margin-bottom: 20px; 
    }

    .interaction-group {
        flex-direction: column;
        gap: 30px;
    }

    .instagram-mockup, .map-container {
        flex: 1 1 100%;
        min-width: unset;
    }

    .whatsapp-float {
        width: 100px; /* Tamanho menor em mobile */
        height: 100px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-bubble {
        width: 150px; /* Balão menor */
        right: 130px; /* Ajuste a posição */
     }
}