@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');
    
    
    :root {
    /* Colors */
    --primary-red: #dc3545;
    --primary-yellow:#ffc107;
    --primary-teal:#31647f;
    --primary-green: #31647f;
    --primary-gray: #31647f;
    --dark-gray: #31647f;
    --light-gray: #f8f9fa;
    --text-dark: #31647f;
    --text-light: #31647f;
    --text-muted: #31647f;
    --white: #ffffff;

    /* Spacing */
    --spacing-xs: 10px;
    --spacing-sm: 15px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 40px;
    --spacing-2xl: 60px;
    --spacing-3xl: 80px;

    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 25px;
    --radius-full: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
    --transition-slow: 0.8s ease;

    
    }

    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

    html {
    height: 100%; 
    }

    body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    display: flex;
    flex-direction: column; 
    min-height: 100vh; 
    margin: 0;
    }

    .main-content {
    flex: 1; 
    }

    .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    }

/* -------------------------------------------------------------------
 * ESTILOS DE COMPONENTES REUTILIZÁVEIS (Título, Botões, Destaque)
 * ------------------------------------------------------------------- */

strong, b { font-weight: 700; }

.title-apice {
    color: var(--primary-teal);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.subtitle-apice {
    color: var(--dark-gray);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.icon-red { color: var(--primary-red); }

.btn-apice-red {
    background-color: var(--primary-red);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
}
.btn-apice-red:hover {
    background-color: #c82333;
    color: #fff;
    transform: translateY(-2px);
}

.bg-light-apice {
    background-color: var(--light-gray);
}

.header {
    background-color: #dc3545;
    padding: 20px 0;
    position: relative;
    z-index: 1000;
}

.top-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.logo img {
    margin-left: 1rem;
    max-width: 180px;
    height: auto;
}

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 14px;
}

.info-item i {
    color:  #fff;
    font-size: 16px;
}

.navigation {
    display: flex;
    justify-content: center;
}

.nav-wrapper {
    background: white;
    border-radius: 50px;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--primary-yellow);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--primary-red);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-teal);
}


/* Botão Hamburger e Responsivo (Mantendo sua lógica original) */

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: absolute;
    top: 30px;
    right: 25px;
}

.hamburger, .hamburger::before, .hamburger::after {
    content: '';
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    border-radius: 3px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: relative;
}

.hamburger::before { position: absolute; top: -8px; }
.hamburger::after { position: absolute; top: 8px; }

.header.nav-open .hamburger { background-color: transparent; }
.header.nav-open .hamburger::before { transform: rotate(45deg); top: 0; }
.header.nav-open .hamburger::after { transform: rotate(-45deg); top: 0; }


@media (max-width: 992px) {
    .top-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        padding: 40px 20px;
        border-radius: 0;
    }

    .header.nav-open .nav-wrapper {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        font-size: 1.2rem; /* Reduzindo o tamanho da fonte para o mobile */
    }
}

/* Hero Section */
.hero-section {
    background: url('https://via.placeholder.com/1920x300.png?text=Fundo+Estrutura') no-repeat center center/cover;
    height: 300px;
    color: white;
    position: relative;
    z-index: 1;
    padding-top: 120px;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}
.hero-section .breadcrumb a { color: var(--primary-yellow); text-decoration: none; }
.hero-section .breadcrumb .breadcrumb-item.active { color: white; }

/* -------------------------------------------------------------------
 * ESTILOS ESPECÍFICOS DA PÁGINA DE CONTATO
 * ------------------------------------------------------------------- */

.contact-form {
    background-color: var(--white);
    border: 1px solid #ddd;
}

/* Estilo para os campos de formulário */
.form-control, .form-select {
    border-radius: var(--radius-md);
    padding: 12px;
    border-color: #ccc;
}
.form-label {
    font-weight: 500;
    color: var(--dark-gray);
}

/* Bloco de Informações de Contato */
.contact-info-block {
    height: 100%;
}

.contact-list {
    margin-top: 20px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-list li i {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-list .details {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.contact-list .details .label {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.2;
}

.contact-list .details a, 
.contact-list .details p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list .details a:hover {
    color: var(--primary-red);
}

/* Ícones de Mídia Social */
.social-icons-contact a {
    color: var(--dark-gray);
    transition: color 0.3s ease;
}
.social-icons-contact a:hover {
    color: var(--primary-red);
}

/* Mapa */
.map-container {
    border: 5px solid var(--white);
}

/* Responsividade do Header (Repetido para consistência) */
@media (max-width: 992px) {
    /* (CÓDIGO DE RESPONSIVIDADE DO HEADER AQUI) */
    .nav-toggle { display: block; }
    .nav-wrapper {
        position: fixed; top: 0; right: 0; width: 280px; height: 100vh; background: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15); transform: translateX(100%);
        transition: transform 0.4s ease-in-out; flex-direction: column; justify-content: center;
        align-items: center; gap: 40px; padding: 40px 20px; border-radius: 0;
    }
    .header.nav-open .nav-wrapper { transform: translateX(0); }
    .nav-menu { flex-direction: column; font-size: 1.2rem; }
    .top-info { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
    .contact-info { flex-direction: column; gap: 10px; }
}



    /* Footer */
    .footer {
    background: var(--primary-red);
    color: white;
    padding: 60px 0 20px;
    }

    .footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    }

    .footer-section h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    }

    .footer-section p {
    line-height: 1.6;
    color: #fff;
    display: flex;
    align-items: center;
    }

    .footer-section p i {
    margin-right: 10px;
    color: #fff;
    }

    footer .footer-links {
    padding-left: 0 !important;
}


    .newsletter {
    display: flex;
    gap: 10px;
    }

    .newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    background: white;
    }

    .newsletter-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    }

    .footer-links {
    list-style: none;
    }

    .footer-links li {
    margin-bottom: 10px;
    }

    .footer-links a {
    color:  #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    }

    .footer-links a:hover {
    color: #e6b02e;
    }

    .footer-bottom {
    border-top: 1px solid white;
    padding-top: 20px;
    text-align: center;
    color:  #fff;
    
    }

    .footer-logo {
    width: 150px; 
    height: auto; 
    margin-bottom: 20px; 
    }

    .footer-description {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px; 
    max-width: 35ch;
    }

    .social-icons {
    display: flex; 
    gap: 15px; 
    }

    .social-icons a {
    color:  #fff; 
    font-size: 22px; 
    text-decoration: none;
    transition: color 0.3s ease; 
    }

    .social-icons a:hover {
    color: #e6b02e; 
    }

    
    @media (max-width: 768px) {

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .top-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        align-items: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .nav-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .feature-cards {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        width: 100%;
        max-width: 300px;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 350px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .newsletter {
        flex-direction: column;
    }

    .hero-carousel .carousel-container {
        height: 400px;
    }

    .carousel-overlay {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .carousel-overlay h3 {
        font-size: var(--font-xl);
    }

    .carousel-overlay p {
        font-size: var(--font-sm);
    }

    .hero-carousel .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .hero-carousel .carousel-nav {
        padding: 0 var(--spacing-sm);
    }

    .hero-carousel .indicator {
        width: 12px;
        height: 12px;
    }
    }

    @media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .nav-menu {
        gap: 10px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .hero-carousel .carousel-container {
        height: 370px;
    }

    .hero-title {
        font-size: 28px;
    }

    .carousel-overlay h3 {
        font-size: var(--font-lg);
    }
    }


.whatsapp-float {
    position: fixed; 
    width: 60px; 
    height: 60px; 
    bottom: 40px; 
    right: 40px; 
    background-color: #25d366; 
    color: #FFF; 
    border-radius: 50px; 
    text-align: center; 
    font-size: 30px; 
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4); 
    z-index: 1000; 
    text-decoration: none;
    
    display: flex;
    justify-content: center;
    align-items: center;

    
    transition: all 0.3s ease-out;
}


.whatsapp-float:hover {
    transform: translateY(-8px);
    box-shadow: 2px 8px 15px rgba(0, 0, 0, 0.4); 
}
