:root {
    --azul-profundo: #002B5C;
    --azul-claro: #004AAD;
    --verde-suave: #00A859;
    --cinza-claro: #F5F7FA;
    --branco: #FFFFFF;
    --dourado: #C5A572;
    --cinza-texto: #4A5568;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--azul-profundo);
    background-color: var(--cinza-claro);
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mobile First Base */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

/* Partículas e elementos animados */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.animated-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--dourado) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--verde-suave) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: float 12s ease-in-out infinite reverse;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.floating-1 {
    width: 150px;
    height: 150px;
    background: var(--azul-claro);
    top: 20%;
    right: -50px;
    animation: float 20s ease-in-out infinite;
}

.floating-2 {
    width: 100px;
    height: 100px;
    background: var(--verde-suave);
    top: 50%;
    left: -30px;
    animation: float 15s ease-in-out infinite alternate;
}

.floating-3 {
    width: 70px;
    height: 70px;
    background: var(--dourado);
    bottom: 10%;
    right: 10%;
    animation: float 10s ease-in-out infinite;
}

.floating-4 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--azul-profundo) 0%, transparent 70%);
    bottom: -30px;
    right: 20%;
    animation: float 18s ease-in-out infinite alternate-reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--dourado) 0%, transparent 70%);
    bottom: -100px;
    right: 10%;
    animation: float 15s ease-in-out infinite alternate;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -15px) rotate(5deg);
    }
    50% {
        transform: translate(-5px, 10px) rotate(-5deg);
    }
    75% {
        transform: translate(-15px, -5px) rotate(2deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.8rem;
    margin-top: 1.5rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
}

strong {
    font-weight: 600;
    color: var(--azul-profundo);
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--azul-profundo) 0%, var(--azul-claro) 100%);
    color: var(--branco);
    padding: 3.5rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header__profile {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    justify-content: center;
}

.header__photo {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--branco);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.header__photo:hover .profile-photo {
    transform: scale(1.05);
}

.header__info {
    text-align: left;
}

.header__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    color: var(--branco);
    border-bottom: 2px solid var(--dourado);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.header__subtitle h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 1rem 0;
    color: var(--branco);
}

.header__credentials {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.credential-item .icon-small {
    width: 20px;
    height: 20px;
    color: var(--dourado);
}

.header__hashtag {
    margin: 0.5rem 0 1rem;
}

.hashtag {
    color: var(--dourado);
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    padding: 0.3rem 0.8rem;
    background: rgba(197, 165, 114, 0.1);
    border-radius: 4px;
}

.hashtag::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--dourado);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

.header__seal {
    background-color: var(--verde-suave);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--branco);
}

.icon-large {
    width: 36px;
    height: 36px;
    color: var(--azul-profundo);
}

/* Section Styles */
section {
    margin: 3rem 0;
    padding: 2.5rem 0;
    position: relative;
}

section:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background-color: var(--verde-suave);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.section-icon {
    color: var(--azul-claro);
    width: 36px;
    height: 36px;
}

section h2 {
    color: var(--azul-profundo);
    text-align: center;
    margin-bottom: 1rem;
}

/* Objective Section */
.objective p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--azul-profundo);
}

.highlight-text {
    font-size: 1.4rem;
    line-height: 1.8;
    padding: 1.5rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 43, 92, 0.05) 0%, rgba(0, 74, 173, 0.05) 100%);
    text-align: center;
    margin: 0 auto;
    border-left: 4px solid var(--verde-suave);
}

/* Section Intro */
.section-intro {
    max-width: 900px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-intro p {
    font-size: 1.2rem;
    color: var(--azul-claro);
}

/* CRM Solution Section */
.crm-solution {
    margin-top: 4rem;
    position: relative;
}

.crm-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.crm-feature {
    background: var(--branco);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--dourado);
}

.crm-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-header .feature-icon {
    color: var(--azul-claro);
    width: 32px;
    height: 32px;
    padding: 6px;
    background-color: rgba(0, 74, 173, 0.1);
    border-radius: 8px;
}

.feature-header h4 {
    color: var(--azul-profundo);
    margin: 0;
    font-size: 1.3rem;
}

.crm-feature p {
    color: var(--cinza-texto);
    margin: 0;
    line-height: 1.6;
}

.crm-benefits {
    background: linear-gradient(135deg, rgba(0, 43, 92, 0.03) 0%, rgba(0, 74, 173, 0.03) 100%);
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 4rem 0;
}

.benefit-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.benefit-icon {
    color: var(--verde-suave);
    width: 36px;
    height: 36px;
}

.benefit-header h3 {
    margin: 0;
    color: var(--azul-profundo);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--branco);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.benefit-icon-small {
    color: var(--verde-suave);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.benefit-item p {
    margin: 0;
    color: var(--azul-claro);
    font-size: 1.05rem;
    line-height: 1.5;
}

.crm-highlight {
    background: var(--branco);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--dourado);
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.highlight-icon {
    color: var(--dourado);
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.highlight-text {
    flex: 1;
}

.highlight-text h4 {
    color: var(--azul-profundo);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.highlight-text p {
    color: var(--cinza-texto);
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .crm-features-grid {
        grid-template-columns: 1fr;
    }

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

    .highlight-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .highlight-text h4 {
        font-size: 1.3rem;
    }

    .highlight-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .crm-benefits {
        padding: 2rem 1rem;
    }

    .benefit-header {
        flex-direction: column;
        text-align: center;
    }

    .benefit-header h3 {
        font-size: 1.4rem;
    }

    .feature-header h4 {
        font-size: 1.2rem;
    }

    .crm-feature {
        padding: 1.5rem;
    }
}

/* Digital Strategy Section */
.strategy-intro {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 600;
    color: var(--azul-claro);
}

.pillars h3, .campaign-structure h3, .targeting-strategy h3, .expected-results h3 {
    text-align: center;
    color: var(--azul-profundo);
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 2rem;
}

.pillars h3::after, .campaign-structure h3::after, .targeting-strategy h3::after, .expected-results h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--verde-suave);
}

.pillars-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.pillar-item {
    flex: 1;
    background-color: var(--branco);
    border-radius: 8px;
    padding: 1.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    min-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.pillar-icon {
    color: var(--azul-claro);
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.pillar-item h4 {
    color: var(--azul-profundo);
    margin-bottom: 0.75rem;
}

.pillar-item p {
    color: var(--azul-claro);
    margin-bottom: 0;
}

.structure-subtitle {
    text-align: center;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--azul-claro);
}

/* Tables Container */
.tables-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.tables-container .table-wrapper {
    flex: 1;
    min-width: 300px;
}

/* Table Styles */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 2rem 0;
    background: var(--branco);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.single-table {
    max-width: 800px;
    margin: 2rem auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Garante boa visualização no mobile */
}

th, td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--cinza-claro);
}

th {
    background-color: var(--azul-claro);
    color: var(--branco);
    font-weight: 600;
}

th[colspan="3"] {
    background-color: var(--azul-profundo);
    text-align: center;
    font-size: 1.2rem;
    padding: 1rem;
}

td[rowspan="3"] {
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    background-color: var(--cinza-claro);
}

tr:hover {
    background-color: var(--verde-suave);
}

ul {
    list-style-position: inside;
    margin-left: 0.5rem;
}

/* Strategy Details */
.targeting-strategy {
    margin-top: 4rem;
}

.strategy-details {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.strategy-detail-item {
    display: flex;
    align-items: flex-start;
    background-color: var(--branco);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    min-width: 280px;
}

.strategy-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.detail-icon {
    color: var(--azul-claro);
    min-width: 30px;
    height: 30px;
    margin-top: 0.25rem;
}

.strategy-detail-item h4 {
    color: var(--azul-profundo);
    margin-bottom: 0.5rem;
}

.strategy-detail-item p {
    margin-bottom: 0;
}

/* Expected Results */
.expected-results {
    margin-top: 4rem;
}

.results-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.result-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    background-color: var(--branco);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.result-icon {
    color: var(--azul-claro);
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.result-item h4 {
    color: var(--azul-profundo);
    margin-bottom: 0.75rem;
}

.result-item p {
    color: var(--azul-claro);
    margin-bottom: 0;
}

/* SDR Implementation Section */
.sdr-features {
    margin: 3rem 0;
}

.feature-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--branco);
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--verde-suave);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    color: var(--azul-claro);
    min-width: 36px;
    height: 36px;
    margin-top: 0.25rem;
}

.feature-content h4 {
    color: var(--azul-profundo);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--azul-claro);
    margin-bottom: 0;
}

/* Implementation Steps */
.implementation-steps {
    margin-top: 4rem;
}

.implementation-steps h3 {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.implementation-steps h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--verde-suave);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    background-color: var(--branco);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-number {
    background-color: var(--azul-profundo);
    color: var(--branco);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.step h4 {
    color: var(--azul-claro);
    margin-bottom: 0.75rem;
}

.step p {
    margin-bottom: 0;
}

/* Integration Section */
.integration {
    margin-top: 4rem;
}

.integration-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.integration-description p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cycle-diagram {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem auto;
    max-width: 900px;
}

.cycle-step {
    text-align: center;
    background-color: var(--branco);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    min-width: 200px;
    max-width: 250px;
    flex: 1;
}

.cycle-number {
    background-color: var(--azul-profundo);
    color: var(--branco);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.cycle-arrow {
    color: var(--azul-claro);
    width: 32px;
    height: 32px;
}

/* Investment Note */
.investment-note {
    text-align: center;
    font-style: italic;
    margin-top: 1rem;
    color: var(--azul-claro);
}

/* Services Table */
.services-table th {
    background-color: var(--azul-profundo);
}

.services-table tr:nth-child(even) {
    background-color: rgba(168, 218, 220, 0.2);
}

.services-table td:last-child {
    font-weight: 600;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    position: relative;
}

.card {
    background: var(--branco);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-left: 3px solid var(--dourado);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card .icon {
    width: 56px;
    height: 56px;
    color: var(--azul-claro);
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background-color: rgba(0, 74, 173, 0.1);
    border-radius: 50%;
}

.card h3 {
    margin-top: 0;
    color: var(--azul-profundo);
    font-size: 1.5rem;
}

.card p {
    color: var(--cinza-texto);
    margin-top: auto;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Detailed Services Section */
.detailed-services {
    margin-top: 5rem;
    position: relative;
}

.service-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
    position: relative;
    flex-wrap: wrap;
}

.service-item:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -2rem;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--verde-suave), transparent);
}

.service-icon-container {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--azul-profundo) 0%, var(--azul-claro) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 43, 92, 0.2);
}

.service-icon {
    width: 50px;
    height: 50px;
    color: var(--branco);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    color: var(--azul-profundo);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    border-bottom: 2px solid var(--dourado);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.service-content p {
    color: var(--cinza-texto);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
    color: var(--azul-claro);
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-features li::before {
    content: "•";
    color: var(--verde-suave);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -4px;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 4.5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 43, 92, 0.03) 0%, rgba(0, 74, 173, 0.03) 100%);
    border-radius: 12px;
    margin: 5rem auto 3rem;
    position: relative;
    overflow: hidden;
}

.cta h2 {
    max-width: 900px;
    margin: 0 auto;
    color: var(--azul-profundo);
    font-size: 2rem;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--verde-suave);
    color: var(--branco);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.button:hover {
    transform: translateY(-2px);
    background: #007A42;
}

.button-icon {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    background-color: var(--azul-profundo);
    color: var(--branco);
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer a {
    color: var(--branco);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.footer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.company-logo {
    margin-bottom: 1.5rem;
}

.footer-logo {
    max-width: 800px;
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

.footer p {
    margin: 0.5rem 0;
}

.validity {
    color: var(--verde-suave);
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .pillars-container,
    .steps-container,
    .results-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .pillar-item,
    .step,
    .result-item {
        width: 100%;
    }
    
    .cycle-diagram {
        flex-direction: column;
        align-items: center;
    }
    
    .cycle-step {
        width: 100%;
        max-width: 300px;
    }
    
    .cycle-arrow {
        transform: rotate(90deg);
    }

    .header__profile {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .header__info {
        text-align: center;
    }

    .header__photo {
        width: 180px;
        height: 180px;
    }

    .header__credentials {
        align-items: center;
    }

    .service-item {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
        flex-wrap: nowrap;
    }
    
    .service-content h3 {
        text-align: center;
        margin: 0 auto 1rem;
    }
    
    .service-features li {
        text-align: left;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .header__title {
        font-size: 2.5rem;
    }

    .header__subtitle h2 {
        font-size: 1.5rem;
    }

    .header__photo {
        width: 150px;
        height: 150px;
    }

    .credential-item {
        font-size: 1rem;
    }

    .highlight-text {
        font-size: 1.2rem;
        padding: 1.25rem;
    }
    
    .feature-container {
        grid-template-columns: 1fr;
    }

    .table-wrapper {
        margin: 1.5rem -1rem;
        border-radius: 0;
    }

    th, td {
        padding: 0.75rem;
    }

    .strategy-details {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    section:not(:last-child)::after {
        width: 90%;
    }

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

    .achievement-item {
        padding: 1.5rem;
    }

    .achievement-icon {
        width: 40px;
        height: 40px;
    }

    .achievement-item h4 {
        font-size: 1.3rem;
    }

    .achievement-item p {
        font-size: 1rem;
    }

    .cta h2 {
        font-size: 1.6rem;
    }
    
    .service-icon-container {
        width: 80px;
        height: 80px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
    }

    .hashtag {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    body {
        overflow-x: hidden;
    }

    .header__title {
        font-size: 2rem;
    }

    .container {
        width: 95%;
        padding: 1.5rem 0;
    }

    .card {
        padding: 1.75rem 1.25rem;
    }
    
    .section-header {
        flex-direction: column;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .section-intro p {
        font-size: 1.1rem;
    }
    
    .cta h2 {
        font-size: 1.4rem;
    }
    
    .feature-item,
    .strategy-detail-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-icon,
    .detail-icon {
        margin-bottom: 1rem;
    }

    .header__photo {
        width: 120px;
        height: 120px;
    }

    .credential-item {
        font-size: 0.9rem;
    }

    .investment-item {
        padding: 1.5rem;
    }

    .price {
        font-size: 1.8rem;
    }

    .service-content h3 {
        font-size: 1.4rem;
    }
    
    .service-features li {
        font-size: 1rem;
    }

    .hashtag {
        font-size: 1rem;
    }

    .achievement-item h4 {
        font-size: 1.25rem;
    }
}

/* Investment Proposal Section */
.investment-proposal {
    margin: 4rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 43, 92, 0.03) 0%, rgba(0, 74, 173, 0.03) 100%);
    border-radius: 12px;
}

.investment-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.investment-item {
    background-color: var(--branco);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--dourado);
}

.investment-item h4 {
    color: var(--azul-profundo);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--azul-profundo);
    margin: 1rem 0;
    font-family: 'Poppins', sans-serif;
}

.investment-features {
    list-style: none;
    margin: 1.5rem 0;
}

.investment-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--cinza-texto);
}

.investment-features li::before {
    content: "•";
    color: var(--dourado);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Achievements Section */
.achievements {
    margin-top: 3rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.achievement-item {
    background: var(--branco);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--verde-suave);
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
    color: var(--verde-suave);
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.achievement-item h4 {
    color: var(--azul-profundo);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.achievement-item p {
    color: var(--cinza-texto);
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Premium Service Section */
.premium-service {
    margin: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 43, 92, 0.02) 0%, rgba(0, 74, 173, 0.02) 100%);
    border-radius: 12px;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 43, 92, 0.1);
    border: 1px solid rgba(197, 165, 114, 0.2);
}

.premium-badge {
    position: absolute;
    top: 30px;
    right: -35px;
    background: var(--dourado);
    color: var(--branco);
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.premium-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--azul-profundo) 0%, var(--azul-claro) 100%);
    color: var(--branco);
    border-radius: 12px 12px 0 0;
}

.premium-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.premium-info {
    flex: 1;
}

.premium-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--branco);
}

.premium-info p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.premium-details {
    padding: 2.5rem;
}

.premium-description {
    font-size: 1.15rem;
    color: var(--azul-profundo);
    line-height: 1.7;
    max-width: 900px;
    margin-bottom: 2rem;
}

.premium-features-container {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.premium-features, .premium-benefits {
    flex: 1;
}

.premium-features h4, .premium-benefits h4 {
    color: var(--azul-profundo);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    border-bottom: 2px solid var(--dourado);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.premium-features ul, .premium-benefits ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.premium-features li, .premium-benefits li {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
    color: var(--azul-claro);
    font-size: 1.05rem;
    line-height: 1.6;
}

.premium-features li::before, .premium-benefits li::before {
    content: "✓";
    color: var(--verde-suave);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.premium-pricing {
    background: rgba(197, 165, 114, 0.05);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-info {
    flex: 1;
}

.pricing-info h4 {
    color: var(--azul-profundo);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.price-consult {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dourado);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.pricing-note {
    font-size: 0.95rem;
    color: var(--cinza-texto);
    margin: 0;
    line-height: 1.6;
}

.technology-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: var(--branco);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 180px;
    text-align: center;
}

.badge-icon {
    color: var(--dourado);
    width: 36px;
    height: 36px;
    margin-bottom: 1rem;
}

.technology-badge span {
    font-weight: 600;
    color: var(--azul-profundo);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .premium-features-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .premium-pricing {
        flex-direction: column;
        text-align: center;
    }
    
    .technology-badge {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .premium-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .premium-icon {
        margin: 0 auto;
    }
    
    .premium-info h3 {
        font-size: 1.6rem;
    }
    
    .premium-description {
        font-size: 1.05rem;
    }
    
    .premium-badge {
        font-size: 0.8rem;
        padding: 6px 30px;
        top: 20px;
        right: -30px;
    }
}

@media (max-width: 480px) {
    .premium-content {
        padding: 1.5rem 1rem;
    }
    
    .premium-details {
        padding: 1.5rem 1rem;
    }
    
    .premium-info h3 {
        font-size: 1.4rem;
    }
    
    .premium-features h4, .premium-benefits h4 {
        font-size: 1.2rem;
    }
    
    .premium-features li, .premium-benefits li {
        font-size: 1rem;
    }
    
    .price-consult {
        font-size: 1.5rem;
    }
}

/* Ajuste para a estratégia centralizada */
.centered-strategy {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.centered-strategy .strategy-detail-item {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
} 