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

/* Regras base para responsividade */
html {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
}

body {
    color: white;
    font-family: Arial, sans-serif;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

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

/* Seções com overflow controlado */
section, header, footer, div, nav, ul {
    max-width: 100%;
    box-sizing: border-box;
}

/* Wrapper para todas as seções */
.hero,
.problems-section,
.services-section,
.target-section,
.method-section,
.cta-section {
    overflow-x: hidden;
    width: 100%;
}

header {
    background-color: #161616;
    display: flex;
    justify-content: space-between;
    align-items: center;
   height: 77px;
}
.logo {
    margin-left: 4%;
}

.nav-menu{
    margin-right: 4%;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-right: 8%;

}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

nav ul li a:hover {
    opacity: 0.7;
}

/* Hero Section */
 h1 {
    font-weight: 600;
    font-size: clamp(1.8rem, 8vw, 6rem);
    line-height: 1.1;
    color: #161616;
    margin-top: 8%;
    margin-left: 4%;
    margin-right: 4%;
}

h1.typewriter .line-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    animation: typing 1s steps(15, end) forwards;
}

h1.typewriter .line-text:nth-child(1) {
    animation-delay: 0s;
}

h1.typewriter .line-text:nth-child(3) {
    animation-delay: 1s;
}

h1.typewriter .line-text:nth-child(5) {
    animation-delay: 2s;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.line {
    width: 92%;
    height: 2px;
    background-color: #161616;
    opacity: 0.3;
    margin-top: 50px;
    margin-left: 4%;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    padding: 60px 4%;
    gap: 40px;
}

.hero-left p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #161616;
    font-weight: 500;
}


.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 15px 25px;
    background-color: white;
    color: #161616;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    float: right;
    border: 1px solid #161616;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.cta-button:hover {
    background-color: #333;
    color: white;
    transform: translateX(5px);
}

.cta-button img {
    transition: transform 0.3s ease;
}

.cta-button:hover img {
    transform: translateX(5px);
}

/* Problems Section */
.problems-section {
    padding: 100px 4%;
    background-color: #161616;
}

.problems-section h2 {
    text-align: center;
    font-size: clamp(1.3rem, 5vw, 3rem);
    font-weight: 600;
    background: radial-gradient(circle, #F5F5F0 0%, #161616 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.sub-headline {
    text-align: center;
    font-size: 20px;
    color: white;
    opacity: 0.7;
    margin-bottom: 60px;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 397px;
    height: auto;
    min-height: 90px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Efeito shimmer/laminado - estado inicial */
.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Animação shimmer dispara quando a classe 'shimmer' é adicionada */
.card.shimmer::after {
    opacity: 1;
    animation: shimmerEffect 2s ease-in-out infinite;
}

@keyframes shimmerEffect {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.card svg {
    flex-shrink: 0;
    opacity: 0.8;
}

.card span {
    font-size: 20px;
    font-family: 'Inter';
    font-weight: 300;
}

/* Manifesto */
.manifesto {

    margin-top: 4%;

}

 .manifesto-title {
    margin-right: 0;
    max-width: 60%;
    font-size: clamp(18px, 4vw, 32px);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: white;
    margin-bottom: 20px;
}

.manifesto-item {
    width: 100%;
}

.manifesto-line {
    width: 100%;
    height: 2.5px;
    background-color: rgba(255, 255, 255, 0.2);
}

.manifesto-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.manifesto-content p {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: white;
    opacity: 0.3;
    font-weight: 300;
}

.manifesto-content svg {
    color: white;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.manifesto-item:hover .manifesto-content svg {
    opacity: 1;
    transform: translateX(5px);
}

.manifesto-line-final {
    width: 100%;
    height: 2.5px;
    background-color: rgba(255, 255, 255, 0.2);
}

.manifesto-conclusion {
    text-align: right;
    color: white;
    font-size: 20px;
    font-weight: 300;
    margin-top: 25px;
    opacity: 0.8;
}

/* Services Section */
.services-section {
    padding: 100px 4%;
    background-color: white;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: black;
}

.services-header p {
    text-align: right;
    font-size: 1.1rem;
    color: black;
    opacity: 0.8;
    display: none;
    line-height: 1.6;
}

.services-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.icon-service{
    width: 32px;
    height: 32px;
    margin-bottom: 20px;
} 

.service-card {
    width: 100%;
    max-width: 495px;
    height: auto;
    min-height: 400px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid hwb(0 88% 7% / 0.424);
    padding: 35px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: black;
    line-height: 1.2;
    padding-bottom: 50px;
}

.service-card-content {
    margin-top: auto;
}

.service-card-content svg {
    color: black;
    opacity: 0.7;
    margin-bottom: 20px;
}

.service-card-content p {
    font-size: 0.95rem;
    color: black;
    opacity: 0.7;
    line-height: 1.7;
}

/* System Block */
.system-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Inter;
        font-weight: 400;
    margin-top: 15px;
    background-color: #6C72D8;
    padding: 5% 4%;
    width: 100%;
    height: auto;
    min-height: 200px;
}

.system-left h3 {
    font-size: 20px;
    font-weight: 300;
    color: white;
    margin-bottom: 25px;
}

.system-left p {
    font-size: 14px;
    color: white;
    line-height: 1.8;
}

.system-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.system-squares {
    display: flex;
    justify-content: space-between;
    gap: clamp(15px, 4vw, 90px);
    flex-wrap: wrap;
}

.square-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.square {
    width: clamp(50px, 10vw, 72px);
    height: clamp(50px, 10vw, 72px);
    background-color: rgba(255, 255, 255, 0.062);
    display: flex;
    padding: 4%;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.square:hover {
    transform: scale(1.05);
}

.square svg {
    color: white;
}

.square-item p {
    font-size: 0.9rem;
    color: white;
    text-align: center;
    line-height: 1.5;
    opacity: 0.8;
}

/* Target Section */
.target-section {
    padding: clamp(40px, 8vw, 100px) 4%;
    padding-bottom: clamp(60px, 12vw, 160px);
    background-color: #161616;
    overflow: hidden;
}

.target-header {
    margin-bottom: 60px;
}

.target-header h2 {
    font-size: clamp(28px, 10vw, 128px);
    font-weight: 400;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    word-wrap: break-word;
}

.target-header p {
    font-size: 16px;
    color: white;
    opacity: 0.7;
}

.arrows-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    
}

.arrow-item {
    display: flex;
    align-items: center;
    gap: 0;
}

.arrow-line {
    flex: 1;
    height: 1px;
    width: 90%;
    background-color: #6C72D8;

}

.arrow-point {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6C72D8;
    flex-shrink: 0;
    width: clamp(20px, 5vw, 30px);
    height: clamp(20px, 5vw, 30px);
}

.arrow-item span {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    color: #6C72D8;
    margin-left: 10px;
    flex: 1;
    min-width: 0;
    text-align: left;
}

.warning-box {
    width: 100%;
    max-width: 1220px;
    height: auto;
    min-height: 62px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 25px;
    margin-top: 60px;
}

.warning-box svg {
    color: #6C72D8;
    flex-shrink: 0;
}

.warning-box span {
    font-size: 1rem;
    color: white;
    opacity: 0.8;
}

/* Method Section */
.method-section {
    background-color: white;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.method-container {
    display: flex;
    justify-content: flex-start;
    gap: 0;
}

.method-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;

}

.method-item:hover {
    transform: translateY(-5px);
}

.method-item:hover .method-text h3,
.method-item:hover .method-text p,
.method-item:hover .method-number {
    color: #030303;
}



.method-top {
    display: flex;
    align-items: flex-start;
    height: 100%;
}

.method-top > h3 {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 600;
    color: #161616;
    padding-right: 15px;
    transition: color 0.3s ease;
}

.method-line-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.method-line {
    width: 1px;
    height: calc(50vh + 100px);
    background-color: #161616;
    flex-shrink: 0;
    margin-top: -50px;
    margin-bottom: -100px;
    transition: all 0.3s ease;
}

.method-text {
   
    transition: all 0.3s ease;
    margin-top: 2%;
}

.method-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #79797a;
    margin-bottom: 10px;
    margin-top: 2%;
    margin-left: 20%;
    transition: color 0.3s ease;
}

.method-text p {
    font-size: 0.95rem;
    color: #79797a;
    opacity: 0.7;
    margin-left: 20%;
    line-height: 1.6;
}

.method-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
}

.method-number {
    font-size: clamp(48px, 10vw, 128px);
    font-weight: 700;
    color: #79797a;
    margin-left: 20%;
    line-height: 1;
    margin-bottom: 2%;
    transition: all 0.3s ease;
}

.method-word {
    font-size: 1rem;
    color: #161616;
    opacity: 0.7;
     margin-left: 20%;
     margin-bottom: 2%;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.method-item:hover .method-word {
    opacity: 1;
}

/* CTA Section */
.cta-section {
    padding: 100px 4%;
    padding-top: 160px;
    background-color: #161616;
    background-image: 
        linear-gradient(to top, rgba(108, 114, 216, 0.6) 0%, transparent 50%),
        linear-gradient(to top right, rgba(108, 114, 216, 0.7) 0%, transparent 40%),
        linear-gradient(to top left, rgba(108, 114, 216, 0.7) 0%, transparent 40%),
        url('background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/imgs/Group 595.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6C72D8;
    margin-bottom: 20px;
}

.cta-section h2 {
    font-size: clamp(1.5rem, 6vw, 4rem);
    font-weight: 600;
    color: white;
    line-height: 1.1;
    margin-bottom: 30px;
}

.cta-section > .cta-content > p {
    font-size: 1.1rem;
    color: white;
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-final-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 25px;
    background-color: #6c71d81c;
    color: white;
    border: 1px solid rgba(108, 114, 216, 0.5);
    border-radius: 0;
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 548px;
    height: auto;
    min-height: 70px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.cta-final-button:hover {
    background-color: #5a60c4;
    transform: translateX(5px);
}

.cta-final-button svg {
    transition: transform 0.3s ease;
}

.cta-final-button:hover svg {
    transform: translateX(5px);
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.footer-logo h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer p {
    font-size: 0.9rem;
    color: white;
    opacity: 0.6;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ========================================
   RESPONSIVO - TABLETS (768px - 1024px)
   ======================================== */
@media (max-width: 1024px) {
    /* Hero Section - Tablet */
    .hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .cta-button {
        float: none;
        width: 100%;
        justify-content: center;
    border-radius: 2px solid black; 
   }

    .cards-container {
        gap: 20px;
    }

    .card {
        width: 100%;
        max-width: 100%;
    }

    .manifesto-title {
        max-width: 100%;
    }

    /* Services Section - Tablet */
    .services-header {
        flex-direction: column;
        gap: 20px;
    }

    .services-header p {
        text-align: left;
    }

    .service-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: auto;
    }

    /* System Block - Tablet */
    .system-block {
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 30px 4%;
        gap: 30px;
    }

    .system-squares {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .square-item {
        width: 40%;
        min-width: 100px;
    }

    .arrow-item span {
        flex: 1;
        width: auto;
    }

    .warning-box {
        width: 100%;
        height: auto;
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }

    /* Method Section - Tablet */
    .method-container {
        flex-wrap: wrap;
    }

    .method-item {
        flex: 1 1 50%;
        min-width: 200px;
    }

    .method-line {
        display: none;
    }

    .method-text h3,
    .method-text p,
    .method-number,
    .method-word {
        margin-left: 10%;
    }

    .cta-final-button {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 18px 20px;
    }
}

/* ========================================
   RESPONSIVO - MOBILE (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    /* Menu Toggle - Mobile */
    .menu-toggle {
        display: flex;
        margin-right: 4%;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 4%;
        left: 4%;
        width: auto;
        height: auto;
        background-color: #161616;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-right: 0;
    }

    .nav-menu ul li a {
        font-size: 1rem;
    }

    header {
        position: relative;
    }

    .line {
        margin-top: 20px;
    }

    .hero-content {
        flex-direction: column;
        padding: 20px 4%;
        gap: 15px;
    }

    .hero-left p {
        font-size: 1rem;
    }

    .hero-left p br {
        display: none;
    }

    .cta-button {
        float: none;
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 0.9rem;
        border: 1px solid #161616;
        border-radius: 0;
        -webkit-appearance: none;
    }

    /* Problems Section - Mobile */
    .problems-section {
        padding: 60px 4%;
    }

    .problems-section h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .sub-headline {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .cards-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .card {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .card span {
        font-size: 16px;
    }

    .card span br {
        display: none;
    }

    /* Manifesto - Mobile */
    .manifesto {
        margin-top: 8%;
    }

    .manifesto-title {
        margin-right: 0;
        font-size: 20px;
        line-height: 1.4;
    }

    .manifesto-content {
        padding: 20px 0;
    }

    .manifesto-content p {
        font-size: 14px;
    }

    .manifesto-conclusion {
        font-size: 16px;
        text-align: left;
    }

    /* Services Section - Mobile */
    .services-section {
        padding: 60px 4%;
    }

    .services-header {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }

    .services-header h2 {
        font-size: 18px;
    }

    .services-header p {
        text-align: left;
        font-size: 1rem;
    }

    .services-header p br {
        display: none;
    }

    .services-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .service-card {
        width: 100%;
        height: auto;
        min-height: auto;
        padding: 25px;
    }

    .service-card h3 {
        font-size: 1.4rem;
        padding-bottom: 30px;
    }

    .service-card h3 br {
        display: none;
    }

    .service-card-content p {
        font-size: 0.9rem;
    }

    .service-card-content p br {
        display: none;
    }

    /* System Block - Mobile */
    .system-block {
        flex-direction: column;
        width: 100%;
        height: auto;
        margin-left: 0;
        padding: 30px 20px;
        font-family: Inter;
        font-weight: 400;
        gap: 30px;
    }

    .system-left h3 {
        font-size: 18px;
    }

    .system-left p {
        font-size: 14px;
    }

    .system-left p br {
        display: none;
    }

    .system-squares {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        width: 100%;
    }

    .square-item {
        width: 40%;
        min-width: 80px;
    }

    .square-item p {
        font-size: 0.75rem;
    }

    /* Target Section - Mobile */
    .target-section {
        padding: 40px 4%;
        padding-bottom: 60px;
    }

    .target-header {
        margin-bottom: 30px;
    }

    .target-header p {
        font-size: 14px;
    }

    .arrows-container {
        gap: 12px;
    }

    .arrow-item {
        flex-wrap: nowrap;
    }

    .arrow-line {
        flex: 1;
        min-width: 30px;
    }

    .arrow-item span {
        flex: 2;
        margin-left: 8px;
        margin-top: 0;
    }

    .warning-box {
        width: 100%;
        height: auto;
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-top: 40px;
    }

    .warning-box span {
        font-size: 0.9rem;
    }

    /* Method Section - Mobile */
    .method-container {
        flex-direction: column;
    }

    .method-item {
        flex: 1 1 100%;
        min-width: 100%;
        padding: 20px 4%;
        border-bottom: 1px solid rgba(22, 22, 22, 0.2);
    }

    .method-item:last-child {
        border-bottom: none;
    }

    /* Estado ativo para animação automática no mobile */
    .method-item.active {
        background-color: rgba(22, 22, 22, 0.05);
    }

    .method-item.active .method-text h3 {
        color: #030303;
        font-weight: 700;
    }

    .method-item.active .method-text p {
        color: #030303;
        opacity: 1;
    }

    .method-item.active .method-number {
        color: #030303;
        transform: scale(1.05);
    }

    .method-item.active .method-word {
        color: #030303;
        opacity: 1;
    }

    .method-line {
        display: none;
    }

    .method-text {
        margin-top: 0;
    }

    .method-text h3 {
        font-size: 1.2rem;
        margin-left: 0;
        margin-top: 0;
    }

    .method-text p {
        font-size: 0.9rem;
        margin-left: 0;
    }

    .method-number {
        margin-left: 0;
    }

    .method-word {
        margin-left: 0;
        font-size: 0.9rem;
    }

    /* CTA Section - Mobile */
    .cta-section {
        padding: 60px 4%;
        padding-top: 80px;
    }

    .cta-section h3 {
        font-size: 1.2rem;
    }

    .cta-section h2 br {
        display: none;
    }

    .cta-section > .cta-content > p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .cta-section > .cta-content > p br {
        display: none;
    }

    .cta-final-button {
        width: 100%;
        height: auto;
        padding: 18px 20px;
        font-size: 0.9rem;
        text-align: center;
        justify-content: center;
        border: 1px solid rgba(108, 114, 216, 0.5);
        border-radius: 0;
        -webkit-appearance: none;
    }

    /* Footer - Mobile */
    .footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-top: 40px;
    }

    .footer-logo h4 {
        font-size: 1.3rem;
    }

    .footer p {
        font-size: 0.8rem;
    }
}

/* ========================================
   RESPONSIVO - MOBILE PEQUENO (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    /* Header - Mobile Pequeno */
    .logo img {
        max-width: 100px;
        height: auto;
    }

    .hero-left p {
        font-size: 0.85rem;
    }

    .cta-button {
        font-size: 0.8rem;
        padding: 10px 12px;
    }

    .card {
        padding: 12px;
    }

    .card img {
        width: 35px;
        height: 35px;
        flex-shrink: 0;
    }

    .card span {
        font-size: 13px;
    }

    .manifesto-content p {
        font-size: 12px;
    }

    .manifesto-conclusion {
        font-size: 13px;
    }

    /* Services Section - Mobile Pequeno */
    .service-card {
        padding: 15px;
    }

    .service-card h3 {
        font-size: 1.1rem;
        padding-bottom: 15px;
    }

    .service-card-content p {
        font-size: 0.8rem;
    }

    /* System Block - Mobile Pequeno */
    .system-block {
        padding: 20px 4%;
    }

    .system-left h3 {
        font-size: 15px;
    }

    .system-left p {
        font-size: 12px;
    }

    .square-item {
        width: 45%;
    }

    .square-item p {
        font-size: 0.7rem;
    }

    .arrow-item span {
        font-size: 0.8rem;
    }

    .warning-box {
        padding: 15px 4%;
    }

    .warning-box span {
        font-size: 0.8rem;
    }

    .cta-final-button {
        font-size: 0.8rem;
        padding: 12px 10px;
    }

    /* Footer - Mobile Pequeno */
    .footer-logo h4 {
        font-size: 1rem;
    }

    .footer p {
        font-size: 0.7rem;
    }
}

/* ========================================
   ANIMAÇÕES MOBILE - Suporte Touch & Scroll
   ======================================== */

/* Keyframes para animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animações de scroll - aparecem quando entram na viewport */
.card,
.service-card,
.method-item,
.arrow-item,
.square-item,
.manifesto-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Delays escalonados para cards */
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

/* Delays escalonados para efeito shimmer dos cards */
.card.shimmer:nth-child(1)::after { animation-delay: 0.1s; }
.card.shimmer:nth-child(2)::after { animation-delay: 0.4s; }
.card.shimmer:nth-child(3)::after { animation-delay: 0.7s; }

/* Delays escalonados para service cards */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

/* Animação de entrada para ícones de serviço - direita para esquerda */
/* Estado inicial: escondido à direita */
.icon-service {
    opacity: 0;
    transform: translateX(40px);
}

/* Animação dispara quando a classe 'animate' é adicionada via JS */
.service-card.animate .icon-service {
    animation: slideInFromRight 0.6s ease forwards;
}

.service-card.animate:nth-child(1) .icon-service { animation-delay: 0.1s; }
.service-card.animate:nth-child(2) .icon-service { animation-delay: 0.3s; }
.service-card.animate:nth-child(3) .icon-service { animation-delay: 0.5s; }

/* Delays escalonados para method items */
.method-item:nth-child(1) { animation-delay: 0.1s; }
.method-item:nth-child(2) { animation-delay: 0.2s; }
.method-item:nth-child(3) { animation-delay: 0.3s; }
.method-item:nth-child(4) { animation-delay: 0.4s; }

/* Delays escalonados para arrows */
.arrow-item:nth-child(1) { animation-delay: 0.1s; }
.arrow-item:nth-child(2) { animation-delay: 0.2s; }
.arrow-item:nth-child(3) { animation-delay: 0.3s; }
.arrow-item:nth-child(4) { animation-delay: 0.4s; }
.arrow-item:nth-child(5) { animation-delay: 0.5s; }

/* Animação de entrada para textos dos arrows - direita para esquerda */
/* Estado inicial: escondido à direita */
.arrow-item span {
    opacity: 0;
    transform: translateX(50px);
}

/* Animação dispara quando a classe 'animate' é adicionada via JS */
.arrow-item.animate span {
    animation: slideInFromRight 0.6s ease forwards;
}

.arrow-item.animate:nth-child(1) span { animation-delay: 0.1s; }
.arrow-item.animate:nth-child(2) span { animation-delay: 0.3s; }
.arrow-item.animate:nth-child(3) span { animation-delay: 0.5s; }
.arrow-item.animate:nth-child(4) span { animation-delay: 0.7s; }

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Delays escalonados para squares */
.square-item:nth-child(1) { animation-delay: 0.1s; }
.square-item:nth-child(2) { animation-delay: 0.2s; }
.square-item:nth-child(3) { animation-delay: 0.3s; }
.square-item:nth-child(4) { animation-delay: 0.4s; }

/* Animações para seções */
.problems-section h2,
.services-header h2,
.target-header h2,
.cta-section h2 {
    animation: fadeIn 0.8s ease forwards;
}

/* ========================================
   SUPORTE TOUCH - :active como alternativa ao :hover
   ======================================== */

/* Botões - efeito ao tocar */
.cta-button:active,
.cta-final-button:active {
    background-color: #333;
    color: white;
    transform: scale(0.98);
}

.cta-button:active img,
.cta-final-button:active svg {
    transform: translateX(5px);
}

/* Cards - efeito ao tocar */
.card:active {
    background-color: rgba(255, 255, 255, 0.15);
    transform: scale(0.98);
}

.service-card:active {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(0.98);
}

/* Method items - efeito ao tocar */
.method-item:active {
    transform: scale(0.98);
}

.method-item:active .method-text h3,
.method-item:active .method-text p,
.method-item:active .method-number {
    color: #030303;
}

/* Manifesto items - efeito ao tocar */
.manifesto-item:active .manifesto-content svg {
    opacity: 1;
    transform: translateX(5px);
}

/* Squares - efeito ao tocar */
.square:active {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.15);
}

/* Links de navegação - efeito ao tocar */
nav ul li a:active {
    opacity: 0.5;
}

/* Warning box - efeito ao tocar */
.warning-box:active {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ========================================
   ANIMAÇÕES DE PULSE/ATENÇÃO
   ======================================== */

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(108, 114, 216, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(108, 114, 216, 0.6);
    }
}

/* CTA button com animação de atenção */
.cta-final-button {
    animation: glow 2s ease-in-out infinite;
}

/* ========================================
   TRANSIÇÕES SUAVES PARA TODOS OS ELEMENTOS
   ======================================== */

.card,
.service-card,
.method-item,
.square,
.cta-button,
.cta-final-button,
.manifesto-item,
nav ul li a {
    transition: all 0.3s ease;
}
