/****** Global Styles ******/
body {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    background-color: #101010; /* Unified Black */
    color: #FFF8DC; /* Light Gold/Cornsilk for text */
    line-height: 1.6;
}

a {
    color: #FFD700; /* Gold */
    text-decoration: none;
}

a:hover {
    color: #C00000; /* Red for hover */
}

h1, h2, h3 {
    color: #FFD700; /* Gold */
    font-weight: 400; /* Thinner for elegance */
}


.img-jogo {
    width: 100%;
    height: auto;
    max-width: 360px; /* Limite no desktop */
    display: block;
    margin: 0 auto;
}

/* Responsividade para telas pequenas */
@media (max-width: 600px) {
    .img-jogo {
        max-width: 100%;
        padding: 0 10px;
    }

    .service-card2 {
        padding: 10px;
        box-sizing: border-box;
    }
}



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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/****** Header Styles ******/
.site-header {
    background-color: #101010; /* Unified Black */
    text-align: center;
}

.banner-container {
    position: relative;
    max-height: 500px; /* Adjust as needed */
    overflow: hidden;
}

.header-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.header-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white; /* Text on banner needs to be visible */
    text-align: center;
    width: 100%;
}

.header-text-overlay h1 {
    font-size: 3em; /* Adjust as needed */
    margin: 0;
    color: white; /* Ensure visibility on banner */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.header-text-overlay p {
    font-size: 1.5em; /* Adjust as needed */
    margin-top: 10px;
    color: white; /* Ensure visibility on banner */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}


.whatsapp-header-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700; /* Gold button */
    color: #101010; /* Black text on gold button */
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.3);
    z-index: 10;
}


.price {
    font-size: 1em; /* Tamanho geral do bloco */
    margin: 20px 0;
}

.old-price {
    text-decoration: line-through;
    color: #C0C0C0;
    margin-right: 10px;
    font-size: 1.8em; /* Tamanho do preço antigo */
}

.new-price {
    color: #FFD700;
    font-weight: bold;
    font-size: 2.5em; /* Tamanho do preço novo */
}

.price small {
    display: block;
    margin-top: 10px;
    font-size: 1.5em; /* Tamanho da frase de promoção */
    color: #FFD700;
}

.live-announcement h2 {
    margin-bottom: 5px; /* Diminui espaço abaixo do título principal */
}

.live-announcement h3 {
    margin-bottom: 5px; /* Diminui espaço abaixo do título principal */
    margin-top: 1px;
}

.live-announcement .subheading {
    margin-top: 0;
    margin-bottom: 10px; /* Ajuste conforme necessário */
    font-size: 1.2em;
    color: #FFD700; /* Dourado */
}

.live-announcement .intro-text {
    margin-top: 0;
    font-size: 1em;
    color: #FFF8DC;
}


.main-navigation {
    background-color: #101010; /* Unified Black */
    padding: 15px 0;
    border-top: 1px solid #FFD700; /* Gold separator */
    border-bottom: 1px solid #FFD700; /* Gold separator */
}

.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.main-navigation ul li {
    display: inline-block;
    margin: 0 20px;
}

.main-navigation ul li a {
    font-size: 1.3em;
    font-weight: 400;
}

/****** Services Section (Cards) ******/
.services-section {
    padding: 40px 0;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    border-bottom: 1px solid #C00000; /* Red detail */
    display: inline-block;
    padding-bottom: 10px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; /* Distributes space around items */
    gap: 30px; /* Space between cards */
}

.service-card {
    background-color: #101010; /* Unified black for card background */
    border: 1px solid #FFD700; /* Gold border */
    border-radius: 8px;
    padding: 25px;
    width: calc(33.333% - 40px); /* For 3 cards, accounting for gap and padding */
    min-width: 280px; /* Minimum width for smaller screens before wrapping */
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.1); /* Subtle gold shadow */
}

.service-card2 {
    background-color: #101010;
    border: 2px solid #FFD700;
    border-radius: 8px;
    padding: 25px;
    width: 100%;
    max-width: 560px;
    min-width: auto;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    margin: 0 auto; /* Centraliza o bloco */
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    background-color: #FFD700; /* Gold background for icon placeholder */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #101010; /* Black icon/text on gold */
    font-size: 1.5em; /* For text based icon placeholder */
}

.service-icon2 {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px auto;
    background-color: #FFD700; /* Gold background for icon placeholder */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #101010; /* Black icon/text on gold */
    font-size: 1.5em; /* For text based icon placeholder */
}

/* Example for text based icons (can be replaced with actual image icons) */
.service-icon[data-icon-type="jogos"]::before { content: "J"; }
.service-icon[data-icon-type="live"]::before { content: "L"; }
.service-icon[data-icon-type="contato"]::before { content: "C"; }

.service-card h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1em;
    margin-bottom: 20px;
    color: #FFF8DC; /* Light gold text */
}

.service-button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #101010; /* Black text */
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.service-button:hover {
    background-color: #C00000; /* Red */
    color: white;
}

/****** Contact Section ******/
.contact-section {
    padding: 40px 0;
    background-color: #101010; /* Unified black */
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    border-bottom: 1px solid #C00000; /* Red detail */
    display: inline-block;
    padding-bottom: 10px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 30px auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #FFD700; /* Gold */
    font-size: 1.1em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #FFD700; /* Gold border */
    border-radius: 5px;
    background-color: #181818; /* Slightly lighter black for inputs */
    color: #FFF8DC; /* Light gold text */
    box-sizing: border-box;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1em;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #101010; /* Black text */
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.submit-button:hover {
    background-color: #C00000; /* Red */
    color: white;
}

.social-icons-contact {
    margin-top: 30px;
}

.social-icons-contact a {
    margin: 0 15px;
    display: inline-block;
}

.social-icons-contact img {
    width: 65px; /* Adjust icon size */
    height: 65px;
   
}


/****** Footer Styles ******/
.site-footer {
    background-color: #101010; /* Unified Black */
    color: #FFD700; /* Gold text */
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #FFD700; /* Gold separator */
    font-size: 0.9em;
}

.footer-social-icons a {
    margin: 0 10px;
}

.footer-social-icons img {
    width: 24px;
    height: 24px;
}

/****** Responsive Adjustments ******/
@media (max-width: 992px) {
    .service-card {
        width: calc(50% - 30px); /* 2 cards per row */
    }
}

@media (max-width: 768px) {
    .header-text-overlay h1 {
        font-size: 2.2em;
    }
    .header-text-overlay p {
        font-size: 1.2em;
    }
    .whatsapp-header-button {
        padding: 10px 20px;
        font-size: 1em;
    }
    .main-navigation ul li {
        margin: 0 10px;
    }
    .main-navigation ul li a {
        font-size: 1.1em;
    }
    .services-grid {
        flex-direction: column;
        align-items: center;
    }
    .service-card {
        width: 80%; /* 1 card per row */
        max-width: 400px;
        margin-bottom: 30px;
    }
    .service-card:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .header-text-overlay h1 {
        font-size: 1.8em;
    }
    .header-text-overlay p {
        font-size: 1em;
    }
    .main-navigation ul li {
        display: block; /* Stack navigation items */
        margin: 10px 0;
    }
    .contact-form {
        padding: 0 15px;
    }
}

