
:root {
    --primary-color: #0d6efd; /* Azul */
    --secondary-color: #ffc107; /* Amarelo */
    --dark-color: #212529; /* Preto */
    --light-color: #ffffff; /* Branco */
    --bg-light-gray: #f8f9fa;
    --text-color: #343a40;
    --footer-bg: #1a1a1a;
    --border-color: #dee2e6;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    background-color: var(--light-color);
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Titillium Web', sans-serif;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

p { margin-bottom: 15px; }
a { text-decoration: none; color: var(--primary-color); transition: color 0.3s ease; }
a:hover { color: #0a58ca; }
img { max-width: 100%; height: auto; border-radius: 8px; }

/* Header e Navegação */
.header {
    background-color: var(--dark-color);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-family: 'Titillium Web', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: var(--light-color);
    z-index: 1001;
}

.logo i {
    color: var(--secondary-color);
    margin-right: 5px;
}

/* Hamburger Menu (Mobile Only) */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background-color: var(--light-color);
    border-radius: 5px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.hamburger-menu.active span:nth-child(1) { transform: rotate(45deg); }
.hamburger-menu.active span:nth-child(2) { opacity: 0; transform: translateX(20px); }
.hamburger-menu.active span:nth-child(3) { transform: rotate(-45deg); }

/* Nav Menu (Mobile) */
.nav-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.nav-menu.active {
    transform: translateX(0);
}

.nav-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.nav-menu li {
    margin: 20px 0;
}

.nav-menu a {
    color: var(--light-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Desktop Navigation Styles */
@media (min-width: 769px) {
    .hamburger-menu {
        display: none;
    }

    .nav-menu {
        position: static;
        height: auto;
        width: auto;
        background-color: transparent;
        transform: translateX(0);
        display: block;
    }

    .nav-menu ul {
        flex-direction: row;
        align-items: center;
    }

    .nav-menu li {
        margin: 0 0 0 20px;
        padding-left: 20px;
        border-left: 1px solid #555; /* Separator */
    }
    
    .nav-menu li:first-child {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }

    .nav-menu a {
        font-size: 1rem;
        position: relative;
        padding-bottom: 5px;
    }

    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--secondary-color);
        transition: width 0.3s ease;
    }

    .nav-menu a:hover::after {
        width: 100%;
    }
}


/* Hero Section */
.hero {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.9)), url('../img/banner.webp');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    padding: 100px 0;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    color: var(--light-color);
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0,0,0,0.7);
    text-align: right;
    max-width: 650px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    text-align: right;
    max-width: 650px;
}

.cta-button {
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #ffcd39;
}

/* Seções */
.section { 
    padding: 80px 0; 
}
.section-wrapper {
    /* This can be used for full-width background colors */
}
.section.bg-light { background-color: var(--bg-light-gray); }
.section.bg-dark { background-color: var(--dark-color); color: var(--light-color); }
.section.bg-dark h2, .section.bg-dark h3 { color: var(--light-color); }

.section-title {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

/* Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.service-card-link { text-decoration: none; color: inherit; display: block; }

.service-card {
    background-color: var(--light-color);
    padding: 35px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-card .icon-container {
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 { font-size: 1.4rem; }

/* Depoimentos */
#depoimentos { background-color: var(--bg-light-gray); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: left;
}
.testimonial-card p { font-style: italic; margin-bottom: 20px; }
.testimonial-card h4 { font-family: 'Roboto', sans-serif; font-weight: bold; color: var(--dark-color); }

/* Footer */
.footer { background-color: var(--footer-bg); color: #a0a0a0; }
.footer .container { text-align: center; padding: 40px 0; }
.footer .nap p { margin-bottom: 10px; }
.footer .nap strong { color: var(--light-color); }

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 100;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover { transform: scale(1.1) rotate(10deg); }

/* Responsividade */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .hero h1 { font-size: 2.5rem; max-width: 100%; }
    h2 { font-size: 2rem; }
    .section { padding: 60px 0; }
    
    .header .container {
        padding: 15px 5%;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--dark-color);
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        display: flex;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu ul {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu li {
        margin: 20px 0;
    }

    .nav-menu a {
        font-size: 1.5rem;
    }

    .hero {
        justify-content: center; /* Center content on mobile */
        text-align: center;
    }

    .hero .container {
        align-items: center; /* Center content on mobile */
        max-width: 100%;
    }

    .hero h1, .hero p {
        text-align: center; /* Center text on mobile */
    }
}
/* =================================
   Estilos de Páginas Internas
   ================================= */

/* Título da Página */
.page-title-section {
    color: var(--light-color);
    padding: 10px 0;
    background: #e6e6e6;
}

.page-title-section h1 {
    font-family: 'Orbitron', sans-serif;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}


.page-title-section p {
    font-size: 1.2rem;
    color: var(--primary-color);
    max-width: 100%;
    margin: 0 auto;
}

/* Layout Geral */
.text-center {
    text-align: center;
}

/* Página Sobre */
.about-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-page-image img {
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-radius: 12px;
    border: 5px solid var(--light-color);
}

.values-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: var(--light-color);
    border: 1px solid var(--border-color);
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.value-card:hover i {
    color: var(--secondary-color);
}

.final-cta-sobre {
    padding: 80px 0;
}

.final-cta-sobre h2 {
    font-size: 2.5rem;
}

.final-cta-sobre p {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
}

/* Página de Serviços */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.service-card-full {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    text-align: center; /* Center text inside */
    background: var(--light-color);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card-full:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.service-card-full .icon-container {
    margin-right: 0;
    margin-bottom: 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.service-card-full .service-card-content {
    flex-grow: 1;
}

.service-card-full .btn-servico {
    margin-left: 0;
    margin-top: 20px;
    white-space: nowrap;
}


/* Página de Contato */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Give more space to the form */
    gap: 0; /* Remove gap */
    background: var(--light-color);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden; /* To keep border-radius on children */
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.contact-page-info {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-page-info h2 {
    color: var(--light-color);
    margin-top: 0;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    margin-right: 20px;
    flex-shrink: 0;
}

.info-item-content h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 0.3rem;
}

.info-item-content p, .info-item-content a {
    color: #eee;
    font-size: 1rem;
}

.contact-page-form {
    padding: 50px 40px;
}

.contact-page-form .form-group {
    margin-bottom: 25px;
}

.contact-page-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 0.9rem;
}

.contact-page-form input,
.contact-page-form textarea,
.contact-page-form select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus,
.contact-page-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
}

.contact-page-form .cta-button {
    width: 100%;
    padding: 18px 35px;
    border-radius: 8px;
}

.map-container-full iframe {
    filter: grayscale(1);
    transition: filter 0.3s;
}

.map-container-full iframe:hover {
    filter: grayscale(0);
}

/* Responsividade para Páginas Internas */
@media (max-width: 992px) {
    .about-page-content,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-card-full {
        flex-direction: column;
        text-align: center;
    }

    .service-card-full .icon-container {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .service-card-full .btn-servico {
        margin-left: 0;
        margin-top: 20px;
    }
}

.payment-icons {
    font-size: 1.8rem;
    color: #ccc;
    display: flex;
    gap: 0.5rem;
}

.payment-note {
    margin-top: 1rem;
}

/* =================================
   Estilos de Página de Serviço
   ================================= */

.service-content-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.service-image {
    flex: 1 1 400px;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-details {
    flex: 1.5 1 500px;
}

.service-details h2 {
    font-family: 'Titillium Web', sans-serif;
    margin-top: 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.benefits-list i {
    color: #28a745;
    margin-right: 0.75rem;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    width: 20px; /* Fixed width for alignment */
}

.why-us-box {
    background-color: #f0f8ff;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    border-radius: 0 8px 8px 0;
}

.final-cta {
    text-align: center;
}

/* Top Bar */
.top-bar {
    background-color: #333; /* Dark background for contrast */
    color: #fff; /* White text */
    padding: 10px 0;
    font-size: 0.9em;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end; /* Align content to the right */
    align-items: center;
}

.top-bar-content span {
    margin-left: 20px;
    display: inline-flex;
    align-items: center;
}

.top-bar-content span i {
    margin-right: 8px;
    color: #f0b800; /* Accent color for icons */
}

/* Responsive adjustments for top bar */
@media (max-width: 768px) {
    .top-bar .container {
        justify-content: center; /* Center content on smaller screens */
    }

    .top-bar-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .top-bar-content span {
        margin: 5px 0;
    }
}