/*
Theme Name:         Moto Honda Club
Version:            2.2.4
Author:             Thiago Gouveia
*/

/* ========= RESET BÁSICO ========= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif !important;
    font-size: 16px;
    line-height: 26px;
    color: #000000;
    background-color: #FFFFFF;
}
strong, b, h1, h2, h3, h4, h5, h6 {
    font-weight: 700 !important;
}
/* .main, .row>*{
    padding-left: 0 !important;
    padding-right: 0 !important;
} */

/* ========= CONTAINER ========= */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.container::before,
.container::after {
    display: none !important;
}

/* ========= TIPOGRAFIA ========= */
h1 {
    font-size: 36px;
    font-weight: bold;
}

h2 {
    font-size: 24px;
    font-weight: bold;
}

h3 {
    font-size: 16px;
    font-weight: bold;
}

p {
    font-size: 16px;
    line-height: 26px;
}

/* ========= BOTÕES ========= */

.btn-primario {
    background-color: #CC0000;
    color: #FFFFFF;
    padding: 10px 16px;
    font-size: 24px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease-in-out;
}

.btn-primario:hover {
    background-color: #850000;
}

.btn-secundario {
    background-color: #0F172A;
    color: #FFFFFF;
    padding: 10px 16px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease-in-out;
}

.btn-secundario:hover {
    background-color: #737070;
}

.btn-terciario {
    background-color: transparent;
    color: #000000;
    padding: 10px 16px;
    font-size: 16px;
    border: 2px solid #0F172A;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease-in-out;
}

.btn-terciario:hover {
    background-color: #D9D9D9;
    color: #0F172A;
    border: none;
}

.ver-mais-wrap {
    margin-top: 60px;
    text-align: center;
}

.btn-ver-mais {
    display: inline-block;
    background: #0F172A;
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease-in-out;
}

.btn-ver-mais:hover {
    background: #CC0000;
    transform: scale(1.04);
    color: #FFFFFF;
}

.motos-seminovas-cta {
    margin-top: 60px;
    text-align: center;
}

/* Container do formulário dentro do painel vermelho */
.seguro-form .wpcf7 {
    width: 100%;
}

.seguro-form .wpcf7 form {
    margin: 0;
}

/* Campos */
.seguro-form .cf7-seguro {
    color: #fff;
}

.seguro-form .cfield {
    margin-bottom: 22px;
}

.seguro-form input[type="text"],
.seguro-form input[type="email"],
.seguro-form input[type="tel"],
.seguro-form select,
.seguro-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .8);
    color: #fff;
    padding: 8px 0;
    font-size: 16px;
    outline: none;
}

/* Placeholder/rótulos */
.seguro-form ::placeholder {
    color: rgba(255, 255, 255, .9);
}

/* Textarea maior */
.seguro-form textarea {
    min-height: 110px;
    resize: vertical;
}

/* Select com seta para baixo */
.seguro-form .cselect select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
    background-size: 18px 18px;
    padding-right: 28px;
}

/* Checkbox e texto */
.seguro-form .caccept {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 18px 0 24px;
    line-height: 1.45;
    font-size: 16px;
}

.seguro-form .caccept input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1.6px solid #fff;
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    position: relative;
    margin-top: 3px;
}

.seguro-form .caccept input[type="checkbox"]:checked {
    background: #fff;
}

.seguro-form .caccept input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23CC0000' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/16px 16px no-repeat;
}

/* Botão */
.seguro-form .csubmit {
    margin-top: 6px;
}

.seguro-form .btn-enviar {
    width: 100%;
    background: #0F172A;
    color: #fff;
    border: 0;
    border-radius: 14px;
    padding: 14px 16px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.seguro-form .btn-enviar:hover {
    background: #0b1227;
    transform: scale(1.02);
}

/* Ajustes mobile */
@media (max-width: 480px) {
    .seguro-form .cf7-seguro {
        font-size: 16px;
    }

    .seguro-form .btn-enviar {
        border-radius: 18px;
    }
}


.card-moto {
    border: 1px solid #E2E2E2;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    max-width: 360px;
    margin: 0 auto;
}

.card-moto:hover {
    transform: translateY(-3px);
    -webkit-box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.1);

}

.card-moto-img img {
    max-width: 350px;
    max-height: 300px;
    /* width: 100%;
    height: 220px; */
    object-fit: cover;
    display: block;
}

.card-moto-body {
    padding: 20px;
    text-align: center;
}

/* Marca */
.card-moto-marca {
    color: #B31B1B;
    font-size: 13px;
    display: block;
    margin-bottom: 5px;
}

/* Nome e Local lado a lado */
.card-moto-titulo-local {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.card-moto-titulo {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.card-moto-local {
    font-size: 13px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-moto-local i {
    color: #E30613;
}

/* Ícones acima do texto */
.card-moto-infos {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
    margin: 14px 0;
}

.card-moto-infos div {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: #555;
    font-size: 13px;
}

.card-moto-infos i {
    color: #B31B1B;
    font-size: 16px;
}

/* Preços */
.card-moto-preco {
    margin-top: 10px;
}

.preco-antigo {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
    margin-bottom: 3px;
}

.promocao {
    background: #D1F0D3;
    color: #2D7A35;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    padding: 2px 8px;
    display: inline-block;
    margin-bottom: 5px;
}

.preco-atual {
    color: #E30613;
    font-size: 24px;
    font-weight: 700;
    margin: 6px 0 12px;
}

/* Botões */
.btn-whatsapp {
    display: block;
    width: 100%;
    background: #444;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 16px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #444;
    color: #FFF;
}

.btn-whatsapp i {
    margin-right: 6px;
    font-size: 16px;
}

.botoes-secundarios {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.btn-outline {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    padding: 8px 0;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #f3f3f3;
}



/* ===== BLOCO DE DESTAQUE ===== */
.secao-destaque {
    text-align: center;
    margin-bottom: 30px;
}

.tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

/* variações de cor */
.tag-vermelha {
    background: #CC0000;
}

.tag-cinza {
    background: #333;
}

.titulo-secao {
    font-size: 38px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.resumo-secao {
    font-size: 18px;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* responsivo */
@media (max-width: 768px) {
    .secao-destaque {
        margin: 60px 0;
    }

    .titulo-secao {
        font-size: 28px;
    }

    .resumo-secao {
        font-size: 16px;
        padding: 0 15px;
    }
    .card-moto-img img {
    max-width: 100%;
}
}


  input[type="file"]:focus,
  input[type="radio"]:focus,
  input[type="checkbox"]:focus {
    outline: unset !important;
    outline-offset: -2px !important;
  }

  input[type="radio"] {
    accent-color: #CC0000; 
}

  .form-check-input:checked {
    background-color: #CC0000;
    border-color: #CC0000;
}





/* whatssapp flutuante */

/* Botão flutuante */
#whatsapp-floating {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99999;
}

.btn-whatsapp-f {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-whatsapp-f:hover {
    transform: scale(1.1);
}

/* Popup WhatsApp */
.whatsapp-popup {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 295px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    padding: 15px;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.popup-header h5 {
    font-size: 18px;
    margin: 0;
}

.close-popup {
    font-size: 22px;
    cursor: pointer;
}

/* Lista de contatos */
.popup-list {
    max-height: 220px;
    overflow-y: auto;
    margin-top: 15px;
}

/* Scroll mais fino */
.popup-list::-webkit-scrollbar {
    width: 4px;
}

.popup-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 20px;
}

/* Itens */
.popup-list .item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 5px;
    border-radius: 8px;
    color: #000;
    text-decoration: none;
    transition: background 0.2s;
}

.popup-list .item:hover {
    background: #f2f2f2;
}

.popup-list .item i {
    font-size: 22px;
    color: #25D366;
}
