/* brasil-aaabet.com - Layout de Grade Hexagonal + Tema Brasileiro */
:root {
    --verde-brasil: #009B3A;
    --amarelo-brasil: #FEDF00;
    --azul-brasil: #002776;
    --branco: #FFFFFF;
    --preto: #000000;
}

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

body {
    font-family: 'Roboto', Arial, sans-serif;
    background: linear-gradient(135deg, var(--verde-brasil) 0%, var(--amarelo-brasil) 50%, var(--azul-brasil) 100%);
    color: var(--preto);
    line-height: 1.6;
}

/* Cabeçalho Hexagonal */
.hex-header {
    background: var(--verde-brasil);
    padding: 20px 0;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    padding-bottom: 40px;
}

.hex-logo {
    width: 180px;
    height: auto;
    animation: pulse-hex 3s infinite;
}

@keyframes pulse-hex {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hex-cta {
    display: inline-block;
    background: var(--amarelo-brasil);
    color: var(--azul-brasil);
    padding: 15px 40px;
    margin-top: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.hex-cta:hover {
    background: var(--azul-brasil);
    color: var(--amarelo-brasil);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Grade Hexagonal de Navegação */
.hex-nav-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hex-nav-item {
    width: 150px;
    height: 150px;
    background: var(--amarelo-brasil);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--azul-brasil);
    font-weight: bold;
    font-size: 0.9em;
    text-align: center;
    padding: 20px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hex-nav-item:hover {
    background: var(--azul-brasil);
    color: var(--amarelo-brasil);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Container Principal */
.hex-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: var(--branco);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.hex-section {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0,155,58,0.1) 0%, rgba(254,223,0,0.1) 100%);
    border-left: 5px solid var(--verde-brasil);
    border-radius: 10px;
}

.hex-section h1, .hex-section h2 {
    color: var(--azul-brasil);
    margin-bottom: 20px;
    font-size: 2em;
}

.hex-section p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Grade Hexagonal de Imagens */
.hex-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.hex-image-box {
    position: relative;
    overflow: hidden;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    aspect-ratio: 1;
    transition: all 0.3s;
}

.hex-image-box:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hex-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQ Hexagonal */
.hex-faq {
    margin-top: 40px;
}

.hex-faq-item {
    background: var(--amarelo-brasil);
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px solid var(--verde-brasil);
    border-radius: 10px;
}

.hex-faq-item h3 {
    color: var(--azul-brasil);
    margin-bottom: 10px;
}

/* Avaliações Hexagonais */
.hex-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.hex-review-card {
    background: var(--verde-brasil);
    color: var(--branco);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hex-review-card .stars {
    color: var(--amarelo-brasil);
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Rodapé Hexagonal */
.hex-footer {
    background: var(--azul-brasil);
    color: var(--branco);
    padding: 40px 20px;
    margin-top: 60px;
    clip-path: polygon(0 15%, 50% 0, 100% 15%, 100% 100%, 0 100%);
    padding-top: 60px;
}

.hex-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.hex-footer-section h3 {
    color: var(--amarelo-brasil);
    margin-bottom: 15px;
    font-size: 1.3em;
}

.hex-footer-section ul {
    list-style: none;
}

.hex-footer-section ul li {
    margin-bottom: 8px;
}

.hex-footer-section a {
    color: var(--branco);
    text-decoration: none;
    transition: color 0.3s;
}

.hex-footer-section a:hover {
    color: var(--amarelo-brasil);
}

.license-badge-hex {
    background: var(--verde-brasil);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
    border: 2px solid var(--amarelo-brasil);
}

.payment-methods-hex {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.payment-badge-hex {
    background: var(--amarelo-brasil);
    color: var(--azul-brasil);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
}

.hex-footer-end {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid var(--amarelo-brasil);
    font-size: 0.9em;
}

/* Responsivo */
@media (max-width: 768px) {
    .hex-nav-item {
        width: 120px;
        height: 120px;
        font-size: 0.8em;
    }
    
    .hex-section h1, .hex-section h2 {
        font-size: 1.5em;
    }
}
