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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


/*Header*/
header {
    background-color: whitesmoke;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    position: fixed;
    z-index: 100;
    background-color: #ffffff;
    width: 100%;
}

.log {

    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 15px;
    color: rgb(30, 30, 160);
    font-size: medium;

    img {
        width: 50px;
    }
}

.tel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    button {
        cursor: pointer;
    }
    a{
        text-decoration: none;
        color: #000;
    }
}

button {
    padding: 10px 20px;
    border-radius: 15px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    margin-right: 15px;

    background-color: #ff5722;
    color: #fff;
    border: none;

    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.btn-primary:hover {
    background-color: #e64a19;
}





section {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(10, 31, 68, 0.9), rgba(26, 58, 92, 0.85)), url('https://i.pinimg.com/736x/77/40/ad/7740ad7439c6347e9f047bd7bfa9208e.jpg') center/cover;
    overflow: hidden;
    padding: 80px 24px;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

/* .brand-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
} */


.brand-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    width: 100%;
    margin-bottom: 32px;
    
}

.brand-header img {
    width: 150px;
    height: auto;
    flex-shrink: 0;
    margin: 0;
}

.brand-name {
    font-size: clamp(42px, 8vw, 84px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    white-space: nowrap;
    margin: 0;
}

.brand-icon {
    width: 48px;
    height: 48px;
    color: #FF8C42;
}

/* .brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #FF8C42;
    letter-spacing: 1px;
} */

.hero h1 {
    font-size: clamp(42px, 8vw, 84px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 .highlight {
    color: #FF8C42;
}

.hero p {
    font-size: clamp(20px, 4vw, 32px);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 48px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #FF8C42 0%, #FFA858 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    padding: 24px 48px;
    border-radius: 50px;
    box-shadow: 0 20px 60px rgba(255, 140, 66, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(255, 140, 66, 0.4);
    background: linear-gradient(135deg, #FF7A28 0%, #FF8C42 100%);
}

.cta-icon {
    width: 28px;
    height: 28px;
}

.availability {
    margin-top: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.availability::before,
.availability::after {
    content: '';
    width: 64px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.expertise-bar {
    background: linear-gradient(90deg, #0A1F44 0%, #1a3a5c 100%);
    padding: 48px 24px;
}

.expertise-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.expertise-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.expertise-icon {
    width: 56px;
    height: 56px;
    color: #FF8C42;
}

.expertise-label {
    font-size: 18px;
    font-weight: 600;
}

.expertise-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    display: none;
}

@media (min-width: 768px) {
    .expertise-divider {
        display: block;
    }
}

.expertise-text {
    color: #e0e0e0;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.trust-section {
    background-color: #f8f8f8;
    padding: 96px 24px;
    /* Remover altura fixa para que a seção cresça conforme o conteúdo
       e não invada a seção seguinte em telas pequenas. */
    min-height: 30rem;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #0A1F44;
    text-align: center;
    margin-bottom: 64px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #FF8C42;
    transition: all 0.3s ease;
    text-align: center;
}

.trust-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.trust-icon-wrapper {
    width: 96px;
    height: 96px;
    background: rgba(255, 140, 66, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.trust-icon {
    width: 56px;
    height: 56px;
    color: #FF8C42;
}

.trust-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0A1F44;
    margin-bottom: 16px;
}

.trust-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.contact-section {
    position: relative;
    padding: 96px 24px;
    background: linear-gradient(rgba(10, 31, 68, 0.95), rgba(26, 58, 92, 0.95)), url('https://images.pexels.com/photos/1095814/pexels-photo-1095814.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
}

.contact-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 24px;
}

.contact-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 48px;
}

.contact-form {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    margin-bottom: 48px;
}

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

.form-group:last-child {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0A1F44;
    margin-bottom: 8px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 16px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #FF8C42;
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

.form-button {
    width: 100%;
    background: linear-gradient(135deg, #FF8C42 0%, #FFA858 100%);
    color: #ffffff;
    border: none;
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.2);
}

.form-button:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.3);
    background: linear-gradient(135deg, #FF7A28 0%, #FF8C42 100%);
}

.contact-info {
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .contact-methods {
        flex-direction: row;
        gap: 48px;
        justify-content: center;
        align-items: center;
    }
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.contact-method:hover {
    color: #FF8C42;
}

.contact-icon-wrapper {
    width: 48px;
    height: 48px;
    background: #FF8C42;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-method:hover .contact-icon-wrapper {
    transform: scale(1.1);
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.contact-text {
    font-size: 18px;
    font-weight: 600;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FF8C42;
    transform: scale(1.1);
}

.social-icon {
    width: 24px;
    height: 24px;
}

/* ESTILOS DA NOVA SEÇÃO DE SERVIÇOS */
.services-section {
    padding: 96px 24px;
    background: linear-gradient(rgba(10, 31, 68, 0.95), rgba(26, 58, 92, 0.95)), url('https://images.pexels.com/photos/213162/pexels-photo-213162.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    text-align: center;
    color: #ffffff;
}

.services-content {
    max-width: 900px;
    margin: 0 auto;
}

.services-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 48px;
    color: #ffffff;
}

.services-list {
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 300;
}

.services-list strong {
    color: #FF8C42;
    font-weight: 600;
}

.quality-badge {
    font-size: 18px;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 48px;
    display: block;
}

.cta-box {
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 48px;
}

.schedule-text {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 32px;
    display: block;
    line-height: 1.4;
}

.btn-schedule {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #FF8C42;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.2);
}

.btn-schedule:hover {
    transform: scale(1.05);
    background-color: #ff7a28;
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.4);
}
.whatsappButton {
    position: fixed;         /* Fixo na tela */
    bottom: 20px;            /* Distância do fundo */
    right: 20px;             /* Distância da direita */
    z-index: 1000;           /* Fica acima de outros elementos */
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsappButton img {
    width: 35px;
    height: 35px;
    pointer-events: none; /* Não interfere no clique */
}

.whatsappButton:hover {
    transform: scale(1.1);
}



@media (max-width: 600px) {
    .whatsapp-float {
        /* Move o botão um pouco mais para cima no mobile para não atrapalhar a navegação */
        bottom: 20px; 
        right: 20px;
        width: 50px; /* Tamanho ligeiramente menor no celular */
        height: 50px;
    }
}

footer {
    background-color: #0A1F44;
    padding: 32px 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 24px;
    }

    .contact-form {
        padding: 24px;
    }

    .expertise-text {
        text-align: center;
        order: 2;
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .cta-button {
        font-size: 16px;
        padding: 16px 24px;
        flex-direction: column;
        gap: 8px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .trust-grid {
        gap: 16px;
    }

    .trust-card {
        padding: 24px;
    }
}

/* Ajustes responsivos para evitar sobreposição em celulares */
@media (max-width: 600px) {
    .trust-section {
        padding: 48px 16px;
    }

    .services-section {
        padding: 48px 16px;
    }
}
/* RESPONSIVIDADE GERAL */
@media (max-width: 768px) {

    header {
        flex-direction: column;
        height: auto;
        padding: 10px;
        gap: 10px;
    }

    .log {
        margin-left: 0;
    }

    .tel {
        flex-direction: column;
        gap: 10px;
    }

    .tel p {
        font-size: 14px;
    }

    button {
        margin-right: 0;
        width: 100%;
        max-width: 250px;
    }

    .hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }

    .brand-header {
        flex-direction: column;
        gap: 10px;
    }

    .brand-header img {
        width: 100px;
    }

    .brand-name {
        font-size: clamp(28px, 7vw, 42px);
        text-align: center;
        white-space: normal;
    }

    .hero p {
        font-size: 18px;
    }

    .cta-button {
        width: 100%;
        max-width: 350px;
        justify-content: center;
        padding: 18px;
        font-size: 15px;
    }

    .expertise-container {
        gap: 30px;
    }

    .expertise-item {
        width: 120px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .services-list {
        font-size: 18px;
    }

    .schedule-text {
        font-size: 18px;
    }

    .btn-schedule {
        width: 100%;
        justify-content: center;
    }
}

/* CELULARES PEQUENOS */
@media (max-width: 480px) {

    .brand-header img {
        width: 80px;
    }

    .brand-name {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .expertise-label {
        font-size: 14px;
    }

    .trust-card {
        padding: 20px;
    }

    .services-title,
    .section-title {
        font-size: 28px;
    }
}