/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #852322;
    --accent-color: #ffc300;
    --border-color: #be4949;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-light: #f5f5f5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--primary-color);
}

/* Header Styles */
header {
    background-color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu li a:hover {
    color: var(--accent-color);
}

.nav-menu li a.active {
    color: var(--accent-color);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
}

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Buttons */
.primary-btn, .secondary-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.primary-btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.primary-btn:hover {
    background-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.secondary-btn {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.secondary-btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Main Slider */
.main-slider {
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0;
}

.banner-swiper {
    width: 100%;
    height: auto;
    min-height: 200px;
}

.slider-image {
    width: 100%;
    height: 100%;
    display: block;
}

.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev {
    color: var(--accent-color);
    background-color: rgba(133, 35, 34, 0.7);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.banner-swiper .swiper-button-next:hover,
.banner-swiper .swiper-button-prev:hover {
    background-color: rgba(133, 35, 34, 0.9);
    transform: scale(1.1);
}

.banner-swiper .swiper-button-next::after,
.banner-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.banner-swiper .swiper-pagination-bullet {
    background-color: var(--accent-color);
    opacity: 0.5;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.banner-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(133, 35, 34, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
    background-image: radial-gradient(circle at center, rgba(255, 195, 0, 0.1) 0%, transparent 70%);
    color: var(--text-light);
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 2px solid rgba(255, 195, 0, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 0 60px rgba(255, 195, 0, 0.1);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.hero p a {
    color: var(--accent-color);
    text-decoration: underline;
}

.hero p a:hover {
    color: #ffd700;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
section {
    margin-bottom: 3rem;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

section a {
    color: var(--accent-color);
    text-decoration: underline;
}

section a:hover {
    color: #ffd700;
}

/* Images */
.content-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-container {
    text-align: center;
    margin: 2rem 0;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: table;
    border: 1px solid rgba(255, 195, 0, 0.2);
}

table thead {
    background-color: rgba(133, 35, 34, 0.8);
    color: var(--text-light);
}

table th, table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 195, 0, 0.2);
    color: var(--text-light);
}

table tbody tr:hover {
    background-color: rgba(255, 195, 0, 0.1);
}

table tbody tr:last-child td {
    border-bottom: none;
}

/* Advantages/Vantagens Table */
.advantages-table {
    margin: 2rem 0;
}

/* FAQ Section */
.faq {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 195, 0, 0.2);
}

.faq h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 1rem 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.payment-systems {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1rem 0;
}

.payment-systems span {
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Button Groups */
.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    justify-content: center;
}

@media (max-width: 1300px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu li a.active {
        border-bottom: none !important ;
    }

    nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--primary-color);
        padding: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        border-top: 1px solid var(--border-color);
    }

    .nav-menu {
        gap: 0;
        flex-direction: column;
    }

    nav.active {
        display: block;
    }

    .nav-menu li {
        text-align: center;
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 480px) {
    .header-buttons {
        width: 100%;
        justify-content: center;
        order: 3;
        margin-top: 15px;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .header-buttons .primary-btn,
    .header-buttons .secondary-btn {
        width: 100%;
    }
}

/* Responsive Design - Mobile First */
@media (max-width: 767px) {
    .banner-swiper {
        min-height: 200px;
    }

    .banner-swiper .swiper-button-next,
    .banner-swiper .swiper-button-prev {
        width: 36px;
        height: 36px;
        display: none; /* Hide arrows on mobile, use swipe gesture */
    }

    .banner-swiper .swiper-button-next::after,
    .banner-swiper .swiper-button-prev::after {
        font-size: 16px;
    }

    .banner-swiper .swiper-pagination {
        bottom: 10px;
    }

    .banner-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .primary-btn,
    .hero-buttons .secondary-btn {
        width: 100%;
    }

    section h2 {
        font-size: 1.5rem;
    }

    table {
        font-size: 0.85rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    table thead,
    table tbody,
    table tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

    table th, table td {
        padding: 0.5rem 0.3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .banner-swiper {
        min-height: 100%;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .nav-menu {
        gap: 1rem;
    }

    .banner-swiper {
        min-height: 300px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .banner-swiper {
        min-height: 300px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.3rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.highlight {
    background-color: var(--accent-color);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    color: var(--primary-color);
    font-weight: 600;
}

