/* Variáveis de Cor (Identidade Visual Moura) */
:root {
    /* Brand colors */
    --brand-blue: #002d72;
    --brand-blue-dark: #001a4d;
    --brand-yellow: #ffb81c;
    --brand-yellow-hover: #e5a010;
    --text-light: #ffffff;
    --text-dark: #333333;
    --whatsapp-green: #25D366;
    --whatsapp-hover: #128C7E;
    --bg-light: #f4f4f4;

    /* Badge & background alignment (adjust these if fine-tuning is needed) */
    --badge-right: 10%;          /* matches .badge right value */
    --badge-nudge-large: 6%;     /* extra nudge on very large screens */
    --badge-nudge-medium: 2%;    /* nudge on medium screens */
    --badge-nudge-small: 4%;     /* nudge on small screens */
}

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header */
header {
    background-color: var(--brand-blue);
    color: var(--text-light);
    padding: 12px 5%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 3px solid var(--brand-yellow);
    gap: 20px;
    min-height: 100px;
    flex-wrap: wrap;
}

.logo-container {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.logo-container .logo {
    max-height: 130px !important;
    width: auto !important;
    display: block;
}

.header-contact {
    flex: 1 1 auto;
    min-width: 250px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.02em;
    text-align: left;
}

.header-contact i {
    color: var(--brand-yellow);
    margin-right: 8px;
}

/* Header Badge */
.header-badge {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--brand-yellow);
    border-radius: 6px;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    margin-left: auto;
}

.badge-text-small {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    font-weight: 900;
}

.badge-phone-small {
    color: var(--brand-yellow);
    font-weight: 900;
    font-size: 1.25rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.badge-phone-small:hover {
    color: var(--text-light);
}

/* Hero Section (Imagem de Fundo Inteira - Exibindo as 3 baterias) */
.hero {
    background-color: var(--brand-blue-dark);
    background-image: linear-gradient(rgba(0, 45, 114, 0.35), rgba(0, 26, 77, 0.85)), url('img/imagem1.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 70%;
    background-attachment: fixed;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 110px 5% 90px;
    min-height: 520px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    width: 100%;
    max-width: 980px;
    padding: 0 24px;
    margin: 0 auto;
}

.hero h1 {
    max-width: 100%;
    margin: 0 auto 28px;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
}

/* For very wide screens, ensure good spacing */
@media (min-width: 1200px) {
    .hero {
        padding: 100px 5% 80px;
        min-height: 600px;
        background-position: calc(100% - 15%) 35%;
    }
}

.hero-content {
    width: 100%;
    max-width: 990px;
    padding: 0 16px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.hero h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 1px 1px 12px rgba(0,0,0,0.55);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

/* Botão Amarelo de Destaque */
.btn-cta {
    display: inline-block;
    background-color: var(--brand-yellow);
    color: var(--brand-blue-dark);
    padding: 15px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-cta:hover {
    background-color: var(--brand-yellow-hover);
    transform: translateY(-2px);
}

.sub-action {
    font-size: 0.95rem;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* Selo Flutuante Redondo */
.badge {
    position: absolute;
    top: 40px;
    right: var(--badge-right);
    background-color: #ffffff;
    color: var(--brand-blue);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 2;
}

.badge strong {
    color: var(--brand-yellow-hover);
    font-size: 1.2rem;
    display: block;
    margin-top: 5px;
}

@media (max-width: 900px) {
    .hero {
        padding: 70px 5% 50px;
        min-height: 480px;
        background-position: center 40%;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-actions {
        width: 100%;
        gap: 16px;
    }

    .btn-cta {
        width: 100%;
        padding: 16px 22px;
        text-align: center;
    }

    .header-badge {
        display: none;
    }
}

@media (max-width: 600px) {
    header {
        padding: 14px 4%;
    }

    .hero {
        padding: 60px 4% 40px;
        min-height: 430px;
        background-position: center 45%;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-actions {
        gap: 14px;
    }

    .badge {
        width: 110px;
        height: 110px;
        top: 22px;
        right: 7%;
        font-size: 0.9rem;
    }
}

/* Segundo Banner */
.secondary-banner {
    padding: 40px 5%;
    background-color: #eff5ff;
    display: flex;
    justify-content: center;
}

.banner-card {
    display: flex;
    align-items: stretch;
    gap: 24px;
    width: 100%;
    max-width: 1180px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    min-height: 320px;
}

.banner-image {
    width: 68%;
    min-width: 400px;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.banner-text {
    flex: 1;
    padding: 28px 28px 28px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-text h2 {
    font-size: clamp(2rem, 2.6vw, 2.6rem);
    margin-bottom: 16px;
    color: var(--brand-blue);
    line-height: 1.05;
}

.banner-text p {
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.7;
    max-width: 90%;
}

.btn-secondary {
    display: inline-block;
    background-color: var(--brand-yellow);
    color: var(--brand-blue-dark);
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
}

@media(max-width: 1100px) {
    .banner-card {
        max-width: 1000px;
    }

    .banner-image {
        width: 65%;
    }
}

@media(max-width: 900px) {
    .banner-card {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
    }

    .banner-image {
        width: 100%;
        height: auto;
        max-height: 280px;
    }

    .banner-text {
        padding: 24px;
    }
}

@media(max-width: 600px) {
    .secondary-banner {
        padding: 24px 4%;
    }

    .banner-text {
        padding: 20px;
    }

    .banner-text h2 {
        font-size: 1.8rem;
    }

    .banner-text p {
        font-size: 0.98rem;
        max-width: 100%;
    }

    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Benefícios */
.benefits {
    padding: 60px 5%;
    background-color: #fff;
    text-align: center;
}

.benefits-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
    border-bottom: 4px solid var(--brand-yellow);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--brand-blue);
    margin-bottom: 15px;
}

.benefit-card h3 {
    margin-bottom: 10px;
    color: var(--brand-blue-dark);
}

/* Seção de Marcas */
.brands {
    background-color: var(--bg-light);
    color: var(--brand-blue-dark);
    padding: 50px 20px;
    text-align: center;
}

.brands h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.brands-list {
    font-size: 1.3rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--brand-blue);
}

/* Seção de Contato */
.contact-section {
    background-color: var(--brand-blue-dark);
    color: var(--text-light);
    padding: 60px 5%;
    position: relative;
    min-height: 280px;
}

.contact-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.contact-info,
.contact-numbers {
    flex: 1;
    min-width: 280px;
}

.contact-info h2,
.contact-numbers h2 {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.address-info p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.85);
}

.address-info p strong {
    font-weight: 700;
}

.contact-numbers p {
    font-size: 1.1rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.phone-link,
.whatsapp-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.phone-link:hover,
.whatsapp-link:hover {
    color: var(--brand-yellow);
}

.whatsapp-link i {
    font-size: 1.2rem;
    color: var(--whatsapp-green);
}

@media(max-width: 1100px) {
    .contact-container {
        gap: 40px;
    }
}

@media(max-width: 768px) {
    .contact-section {
        padding: 40px 5%;
        min-height: auto;
    }

    .contact-container {
        flex-direction: column;
        gap: 32px;
        align-items: center;
        text-align: center;
    }

    .contact-info,
    .contact-numbers {
        width: 100%;
    }

    .address-info p {
        font-size: 0.9rem;
    }

    .contact-numbers p {
        font-size: 1rem;
    }
}

@media(max-width: 576px) {
    .contact-section {
        padding: 30px 4%;
    }

    .contact-info h2,
    .contact-numbers h2 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
}

/* Rodapé */
footer {
    background-color: var(--brand-blue-dark);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
}

.float-whatsapp {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    top: auto !important;
    left: auto !important;
    width: 68px !important;
    height: 68px !important;
    min-width: 68px !important;
    min-height: 68px !important;
    background-color: var(--whatsapp-green) !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25) !important;
    z-index: 99999 !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    border: 2px solid rgba(255,255,255,0.95);
}

.float-whatsapp i {
    font-size: 1.4rem;
    line-height: 1;
}

.float-whatsapp:hover,
.float-whatsapp:focus {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

@media (max-width: 900px) {
    .float-whatsapp {
        bottom: 18px !important;
        top: auto !important;
        right: 18px !important;
        width: 58px !important;
        height: 58px !important;
    }
}

@media (max-width: 600px) {
    .float-whatsapp {
        bottom: 16px !important;
        right: 16px !important;
        width: 54px !important;
        height: 54px !important;
    }

    .float-whatsapp i {
        font-size: 1.2rem !important;
    }
}

/* Responsividade (Celulares e Tablets) */
@media(max-width: 992px) {
    header {
        flex-wrap: wrap;
        padding: 14px 5%;
        min-height: auto;
        gap: 12px;
    }

    .logo-container {
        flex: 0 0 auto;
        order: 1;
    }

    .logo-container .logo {
        max-height: 60px;
    }

    .header-contact {
        flex: 0 0 100%;
        order: 2;
        text-align: center;
        font-size: 0.95rem;
        min-width: unset;
    }

    .hero {
        padding: 70px 5% 50px;
        min-height: 420px;
        background-position: center 30%;
        background-size: cover;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-actions {
        width: 100%;
        align-items: center;
    }

    .btn-cta {
        width: auto;
        min-width: 240px;
    }

    .badge {
        width: 110px;
        height: 110px;
        font-size: 0.85rem;
        right: 15px;
        top: 15px;
    }

    .badge strong {
        font-size: 1rem;
    }

    .float-whatsapp {
        top: 220px !important;
        bottom: auto !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 28px !important;
    }

    .benefits-grid {
        flex-direction: column;
        align-items: center;
    }

    .brands-list {
        gap: 10px;
        font-size: 1rem;
    }
}

@media(max-width: 768px) {
    header {
        padding: 14px 5%;
        flex-wrap: wrap;
    }

    .logo-container {
        flex: 0 0 auto;
    }

    .logo-container .logo {
        max-height: 55px;
    }

    .header-contact {
        flex: 0 0 100%;
        text-align: center;
        font-size: 0.9rem;
        min-width: unset;
    }

    .hero {
        padding: 60px 5% 45px;
        min-height: 380px;
        background-position: center 30%;
        background-size: cover;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-actions {
        width: 100%;
        align-items: stretch;
    }

    .btn-cta {
        width: 100%;
        padding: 13px 20px;
        font-size: 1.1rem;
    }

    .badge {
        width: 95px;
        height: 95px;
        right: 12px;
        top: 12px;
        font-size: 0.78rem;
    }

    .sub-action {
        font-size: 0.9rem;
    }

    .benefit-card {
        min-width: 200px;
    }

    .brands-list {
        font-size: 0.95rem;
    }
}

@media(max-width: 576px) {
    header {
        padding: 12px 16px;
        flex-wrap: wrap;
    }

    .logo-container {
        flex: 0 0 auto;
        order: 1;
        width: 100%;
        justify-content: center;
    }

    .logo-container .logo {
        max-height: 50px;
    }

    .header-contact {
        flex: 0 0 100%;
        order: 2;
        font-size: 0.85rem;
        text-align: center;
        min-width: unset;
    }

    .hero {
        padding: 50px 16px 40px;
        min-height: 340px;
        background-position: center 30%;
        background-size: cover;
    }

    .hero h1 {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-actions {
        gap: 10px;
        align-items: stretch;
    }

    .btn-cta {
        padding: 12px 16px;
        font-size: 1rem;
        width: 100%;
    }

    .sub-action {
        font-size: 0.85rem;
        text-align: center;
    }

    .badge {
        width: 80px;
        height: 80px;
        right: 10px;
        top: 10px;
        font-size: 0.7rem;
    }

    .badge strong {
        font-size: 0.9rem;
        margin-top: 3px;
    }

    .benefit-card {
        min-width: 100%;
        padding: 20px;
    }

    .benefit-card i {
        font-size: 2rem;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }

    .brands h2 {
        font-size: 1.2rem;
    }

    .brands-list {
        font-size: 0.85rem;
        gap: 8px;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: center;
    }

    .float-whatsapp {
        top: 430px !important;
        bottom: auto !important;
        right: 16px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 24px !important;
    }
}

@media(max-width: 400px) {
    header {
        padding: 10px 12px;
    }

    .logo-container .logo {
        max-height: 55px;
    }

    .header-contact {
        font-size: 0.8rem;
    }

    .hero {
        padding: 40px 12px 35px;
        min-height: 300px;
        background-size: cover;
        background-position: center 30%;
    }

    .hero h1 {
        font-size: 1.4rem;
        margin-bottom: 14px;
    }

    .btn-cta {
        padding: 11px 14px;
        font-size: 0.95rem;
    }

    .badge {
        width: 70px;
        height: 70px;
        font-size: 0.65rem;
    }
    .float-whatsapp {
        top: 400px !important;
        bottom: auto !important;
        right: 16px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 24px !important;
    }
}