/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: #222222;
    color: #dfe2e8;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== HEADER ===== */
.header {
    background-color: #222222;
    padding: 30px 0 20px;
    position: relative;
    z-index: 100;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.logo-area a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
}

.logo-text {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #dfe2e8;
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.main-nav ul li a {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #9ba4b7;
    transition: color 0.3s;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #0097f5;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #dfe2e8;
}

/* ===== HERO SECTION (Home) ===== */
.hero-section {
    background-color: #222222;
    padding: 0 20px 40px;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    border-radius: 4px;
    display: block;
}

/* ===== HIGHLIGHTS SECTION (Home) ===== */
.highlights-section {
    background-color: #222222;
    padding: 60px 20px;
}

.highlights-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.highlights-left {
    flex: 1;
}

.highlights-title {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    color: #ffffff;
}

.highlights-right {
    flex: 1;
}

.highlights-right p {
    font-size: 15px;
    line-height: 1.8;
    color: #dfe2e8;
    margin-bottom: 24px;
}

.btn-green {
    display: inline-block;
    color: #0097f5;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0;
    transition: opacity 0.3s;
}

.btn-green:hover {
    opacity: 0.8;
}

/* ===== THREE COLUMNS SECTION (Home) ===== */
.three-columns-section {
    background-color: #222222;
    padding: 60px 20px;
    border-top: 1px solid #333;
}

.three-columns-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.column {
    flex: 1;
}

.column h2 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
    color: #dfe2e8;
    margin-bottom: 20px;
}

.column p {
    font-size: 14px;
    line-height: 1.7;
    color: #9ba4b7;
}

.column .quote {
    font-style: italic;
    color: #9ba4b7;
    font-size: 14px;
}

/* ===== SERVICES SECTION (Home) ===== */
.services-section {
    background-color: #212121;
    padding: 80px 20px;
    border-top: 1px solid #333;
}

.services-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.services-left {
    flex: 1;
}

.services-left h2 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
}

.services-right {
    flex: 1.2;
}

.services-right p {
    font-size: 15px;
    line-height: 1.8;
    color: #dfe2e8;
    margin-bottom: 30px;
}

.services-list {
    margin-bottom: 30px;
}

.services-list li {
    font-size: 15px;
    color: #dfe2e8;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.services-list li .arrow {
    color: #0097f5;
    font-size: 20px;
    font-weight: 700;
}

/* ===== TESTIMONIALS SECTION (Home) ===== */
.testimonials-section {
    background-color: #222222;
    padding: 80px 20px;
    border-top: 1px solid #333;
}

.testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
}

.testimonial-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.testimonial-image {
    flex: 0 0 380px;
}

.testimonial-image img {
    width: 100%;
    border-radius: 4px;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content h2 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #dfe2e8;
    margin-bottom: 24px;
}

.testimonial-content p strong {
    font-weight: 700;
}

/* ===== CONTACT CTA SECTION ===== */
.contact-cta-section {
    background-color: #0097f5;
    padding: 80px 20px;
    text-align: center;
}

.contact-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-cta-inner h1 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.btn-outline-white {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: #0097f5;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #272727;
    padding: 30px 20px;
    text-align: center;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

/* ===================================================
   INTERNAL PAGES - SHARED STYLES
   =================================================== */

/* ===== PAGE TITLE SECTION ===== */
.page-title-section {
    background-color: #222222;
    padding: 60px 20px 40px;
}

.page-title-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.page-title-left .page-title-inner {
    text-align: left;
}

.page-title {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 38px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
}

.page-title strong {
    font-weight: 700;
}

.page-subtitle {
    font-size: 15px;
    line-height: 1.8;
    color: #dfe2e8;
    max-width: 800px;
    margin: 0 auto;
}

/* ===================================================
   SOBRE NOS PAGE
   =================================================== */

/* Two Columns Text */
.two-columns-section {
    background-color: #222222;
    padding: 20px 20px 60px;
}

.two-columns-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.two-columns-inner .col {
    flex: 1;
}

.two-columns-inner .col p {
    font-size: 15px;
    line-height: 1.8;
    color: #dfe2e8;
}

/* Full Width Image */
.full-image-section {
    background-color: #222222;
    padding: 0 20px 60px;
}

.full-image-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.full-width-image {
    width: 100%;
    border-radius: 4px;
}

/* Image + Text Section */
.image-text-section {
    background-color: #222222;
    padding: 40px 20px 80px;
}

.image-text-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.image-text-left {
    flex: 0 0 380px;
}

.image-text-left img {
    width: 100%;
    border-radius: 4px;
}

.image-text-right {
    flex: 1;
}

.image-text-right h2 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 20px;
}

.image-text-right p {
    font-size: 15px;
    line-height: 1.8;
    color: #dfe2e8;
}

/* ===================================================
   SERVICOS PAGE
   =================================================== */

.services-cards-section {
    background-color: #222222;
    padding: 20px 20px 80px;
}

.services-cards-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.service-card {
    flex: 1;
}

.service-card-image {
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s;
}

.service-card-image img:hover {
    transform: scale(1.03);
}

.service-card h2 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.4;
}

.service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #9ba4b7;
}

/* ===================================================
   DEPOIMENTOS PAGE
   =================================================== */

.testimonials-grid-section {
    background-color: #222222;
    padding: 20px 20px 80px;
}

.testimonials-grid-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 80px;
}

.testimonial-item {
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.testimonial-name-light {
    font-size: 15px;
    color: #dfe2e8;
    margin-bottom: 8px;
}

.testimonial-name-bold {
    font-size: 15px;
    color: #ffffff;
}

.testimonial-name-bold strong {
    font-weight: 700;
}

/* ===================================================
   EQUIPE PAGE
   =================================================== */

.team-grid-section {
    background-color: #222222;
    padding: 20px 20px 80px;
}

.team-grid-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.team-quote {
    font-size: 14px;
    line-height: 1.7;
    color: #dfe2e8;
    margin-bottom: 16px;
    text-align: center;
}

.team-name {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0097f5;
    margin-bottom: 4px;
}

.team-company {
    font-size: 13px;
    color: #9ba4b7;
}

/* ===================================================
   CONTATO PAGE
   =================================================== */

.contact-info-section {
    background-color: #222222;
    padding: 40px 20px 60px;
    border-bottom: 1px solid #333;
}

.contact-info-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.contact-item {
    flex: 1;
}

.contact-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
}

.contact-item-title {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0097f5;
    margin-bottom: 8px;
}

.contact-item-label {
    font-size: 14px;
    color: #9ba4b7;
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: 14px;
    color: #dfe2e8;
    margin-top: 8px;
}

/* Map + Text */
.map-text-section {
    background-color: #222222;
    padding: 60px 20px 80px;
}

.map-text-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.map-container {
    flex: 0 0 420px;
    border-radius: 4px;
    overflow: hidden;
}

.map-container iframe {
    display: block;
    border-radius: 4px;
}

.map-text-content {
    flex: 1;
}

.map-text-content h2 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.map-text-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #dfe2e8;
}

/* ===================================================
   RESPONSIVE
   =================================================== */

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav ul li a {
        display: block;
        padding: 12px 16px;
    }

    .mobile-menu-btn {
        display: flex;
        position: absolute;
        top: 30px;
        right: 20px;
    }

    .logo-text {
        font-size: 20px;
    }

    /* Home */
    .highlights-inner {
        flex-direction: column;
        gap: 30px;
    }

    .highlights-title {
        font-size: 22px;
    }

    .three-columns-inner {
        flex-direction: column;
        gap: 30px;
    }

    .services-inner {
        flex-direction: column;
        gap: 30px;
    }

    .services-left h2 {
        font-size: 22px;
    }

    .testimonial-card {
        flex-direction: column;
        gap: 24px;
    }

    .testimonial-image {
        flex: none;
        width: 100%;
    }

    .contact-cta-inner h1 {
        font-size: 26px;
    }

    /* Sobre nos */
    .two-columns-inner {
        flex-direction: column;
        gap: 24px;
    }

    .image-text-inner {
        flex-direction: column;
        gap: 24px;
    }

    .image-text-left {
        flex: none;
        width: 100%;
    }

    .image-text-right h2 {
        font-size: 20px;
    }

    /* Servicos */
    .services-cards-inner {
        flex-direction: column;
        gap: 40px;
    }

    /* Depoimentos */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Equipe */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Contato */
    .contact-info-inner {
        flex-direction: column;
        gap: 30px;
    }

    .map-text-inner {
        flex-direction: column;
        gap: 30px;
    }

    .map-container {
        flex: none;
        width: 100%;
    }

    .page-title {
        font-size: 28px;
    }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    padding: 20px 30px;
    z-index: 9999;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #dfe2e8;
    min-width: 250px;
}

.cookie-banner-text a {
    color: #0097f5;
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: #3db5ff;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn-accept {
    display: inline-block;
    padding: 10px 24px;
    background-color: #0097f5;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn-accept:hover {
    background-color: #007acc;
}

.cookie-btn-reject {
    display: inline-block;
    padding: 10px 24px;
    background-color: transparent;
    color: #9ba4b7;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #555;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.cookie-btn-reject:hover {
    background-color: #333;
    color: #ffffff;
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ===== PRIVACY POLICY PAGE ===== */
.privacy-section {
    background-color: #222222;
    padding: 20px 20px 80px;
}

.privacy-inner {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-updated {
    font-size: 13px;
    color: #9ba4b7;
    font-style: italic;
    margin-bottom: 30px;
}

.privacy-inner p {
    font-size: 15px;
    line-height: 1.8;
    color: #dfe2e8;
    margin-bottom: 16px;
}

.privacy-inner h2 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 36px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #333;
}

.privacy-inner ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.privacy-inner ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #dfe2e8;
    margin-bottom: 8px;
    list-style: disc;
}

.privacy-inner ul.contact-list {
    list-style: none;
    padding-left: 0;
}

.privacy-inner ul.contact-list li {
    list-style: none;
    margin-bottom: 4px;
}

.privacy-inner a {
    color: #0097f5;
    text-decoration: underline;
}

.privacy-inner a:hover {
    color: #3db5ff;
}
