/* Configurações Globais */
:root {
    --primary-color: #007BFF;   /* Azul Principal */
    --secondary-color: #333333; /* Cinza Escuro para texto/fundo */
    --light-bg: #f4f7f9;        /* Fundo claro para seções */
    --text-dark: #333;          /* Cor de texto padrão */
    --text-light: #ffffff;      /* Cor de texto claro */
    --shadow-subtle: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    padding-bottom: 0; 
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

/* 1. CABEÇALHO FIXO (Holpi Tecnologia) */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: var(--text-light);
    box-shadow: var(--shadow-subtle);
    z-index: 1000; 
}

.fixed-header .logo img {
    height: 40px; /* Ajuste o tamanho do seu logo */
}

.fixed-header nav a {
    color: var(--secondary-color);
    margin-left: 25px;
    font-weight: 700;
    transition: color 0.3s;
}

.fixed-header nav a:hover {
    color: var(--primary-color);
}

.header-spacer {
    height: 70px; /* Deve ser a altura do fixed-header + padding */
}

/* 2. SEÇÃO PRINCIPAL (HERO) */
.hero-section {
    position: relative;
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('placeholder-hero.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center; 
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-overlay h1 {
    font-size: 3em;
    font-weight: 900;
    max-width: 80%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0 auto; /* Garante centralização horizontal */
}

/* 3. CAIXAS DE RECURSOS */
.features-section {
    display: flex;
    justify-content: space-between;
    padding: 20px 5%;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.feature-box {
    flex: 1;
    background: var(--text-light);
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--shadow-subtle);
    transition: transform 0.3s;
    display: flex; /* Para flexbox interno para alinhamento */
    flex-direction: column;
    justify-content: flex-start; /* Alinha o conteúdo ao topo */
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.feature-image-wrapper {
    width: 100px; /* Tamanho fixo para o container da imagem */
    height: 100px; /* Tamanho fixo para o container da imagem */
    margin: 0 auto 15px auto; /* Centraliza a imagem e adiciona margem inferior */
    overflow: hidden; 
    border-radius: 50%; /* Faz a imagem redonda, se desejar */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-bg); /* Fundo sutil para a imagem */
}

.feature-image-wrapper img {
    width: 80%; /* Faz a imagem ocupar 80% do wrapper */
    height: 80%; /* Mantém a proporção */
    object-fit: contain; /* Ajusta a imagem dentro do container sem cortar */
    border-radius: 0; 
}

.feature-box h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-box p {
    flex-grow: 1; 
    margin-bottom: 0; 
}

/* 4. RODAPÉ (Holpi Tecnologia) */
#main-footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 40px 5% 10px 5%;
    font-size: 0.9em;
}

#main-footer .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 20px auto;
}

#main-footer .footer-logo, #main-footer .footer-links, #main-footer .footer-contact {
    padding: 10px;
    min-width: 200px;
}

#main-footer .footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1); 
}

#main-footer .footer-logo .tagline {
    margin-top: 10px;
    opacity: 0.8;
}

#main-footer .footer-links h4, #main-footer .footer-contact h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

#main-footer .footer-links a, #main-footer .footer-contact a {
    color: var(--text-light);
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

#main-footer .footer-contact p {
    margin-bottom: 8px;
}

#main-footer .footer-links a:hover, #main-footer .footer-contact a:hover {
    color: var(--primary-color);
}

#main-footer .social-icons a {
    margin-right: 15px;
    font-size: 1.2em;
}

#main-footer .footer-copy {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #444;
    opacity: 0.7;
}

/* MEDIA QUERIES para Responsividade (Mobile) */
@media (max-width: 768px) {
    .fixed-header {
        padding: 10px 4%;
    }
    .fixed-header nav {
        display: none; 
    }
    
    .hero-section {
        height: 50vh;
    }
    .hero-overlay h1 {
        font-size: 2em;
    }

    .features-section {
        flex-direction: column;
        gap: 20px;
        padding: 20px 4%;
    }

    #main-footer .footer-content {
        flex-direction: column;
        text-align: center;
    }
    #main-footer .footer-logo, #main-footer .footer-links, #main-footer .footer-contact {
        min-width: 100%;
        margin-bottom: 20px;
    }
    #main-footer .footer-links a {
        display: inline-block;
        margin: 0 10px;
    }
    #main-footer .footer-contact .social-icons {
        margin-top: 10px;
    }
}
/* FIM DOS ESTILOS DA HOLPI TECNOLOGIA */


/* ESTILOS DA PÁGINA DE CONTATO ROY (Incluso no style.css, mas você também pode usar estilos inline no contato-roy.html se preferir) */

/* Novo Cabeçalho LGBTQIA+ */
.roy-header {
    background: linear-gradient(to right, #E40303, #FF8C00, #FFED00, #008026, #0045FF, #76008A); /* Cores LGBTQIA+ */
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed; /* Fixa o cabeçalho */
    top: 0;
    width: 100%;
    z-index: 1001;
}
.roy-header .logo-roybet img {
    height: 40px; /* Ajuste o tamanho do banner/logo da ROYBET */
}
.roy-header nav a {
    color: white; /* Texto em branco para contrastar com o fundo colorido */
    margin-left: 25px;
    font-weight: 700;
    transition: color 0.3s;
}
.roy-header nav a:hover {
    color: #ccc; /* Cor ao passar o mouse */
}
.roy-header-spacer {
    height: 70px; /* Ajuste conforme a altura do .roy-header */
}

.roy-contact-section {
    display: flex;
    flex-direction: row; 
    justify-content: center;
    align-items: center;
    padding: 60px 5%; 
    max-width: 1000px;
    margin: 40px auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    gap: 40px; 
    flex-wrap: wrap; 
}

.roy-text-content {
    flex: 1; 
    min-width: 300px; 
    text-align: left;
}
.roy-text-content h2 {
    font-size: 2.2em;
    color: #E40303; 
    margin-bottom: 15px;
}
.roy-text-content p {
    font-size: 1.1em;
    margin-bottom: 10px;
}
.roy-text-content strong {
    color: #0045FF; 
}

.roy-image-wrapper {
    flex-shrink: 0; 
    width: 340px; 
    height: 337.5px; 
    overflow: hidden; 
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.roy-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.whatsapp-button {
    display: inline-flex; 
    align-items: center;
    background-color: #25D366; 
    color: white;
    padding: 12px 25px;
    border-radius: 50px; 
    margin-top: 25px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s;
}
.whatsapp-button:hover {
    background-color: #1DA851;
}
.whatsapp-button i {
    margin-right: 10px;
    font-size: 1.3em;
}

/* Rodapé específico para o Roy */
.roy-footer {
    background-color: #76008A; 
    color: white;
    padding: 30px 5% 15px 5%;
    font-size: 0.9em;
    text-align: center;
}
.roy-footer .social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 1.5em;
}
.roy-footer .social-icons {
    margin-bottom: 15px;
}
.roy-footer p {
    margin-bottom: 5px;
}
.roy-footer a {
    color: white;
    text-decoration: underline;
}

/* Media Queries para responsividade */
@media (max-width: 768px) {
    .roy-contact-section {
        flex-direction: column; 
        text-align: center;
    }
    .roy-text-content {
        order: 2; 
        text-align: center;
    }
    .roy-image-wrapper {
        order: 1; 
        width: 80%; 
        height: auto; 
        margin-bottom: 20px;
    }
    .roy-image-wrapper img {
        width: 100%;
        height: auto;
    }
    .roy-header nav {
        display: none;
    }
    .roy-header .logo-roybet {
        text-align: center;
        width: 100%;
    }
}