/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #1a1a1a;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 40px;
    width: auto;
    display: block;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ffd700;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.btn-whatsapp:hover {
    background: #20b954;
}

/* Hero Section */
.hero {
    background: #1a1a1a;
    padding: 120px 0 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-subtitle {
    color: #a48449;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h2 {
    font-size: 48px;
    font-weight: bold;
    margin: 20px 0;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary {
    background: #25d366;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #20b954;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-person {
    width: 100%;
    max-width: 600px;
    height: auto;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-person img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    display: block;
    min-height: 600px;}

.anticipation-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}


/* Simulation Section */
.simulation {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 40px 0 50px;
    color: white;
    position: relative;
    margin-top: -100px;
    z-index: 10;
}

.simulation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.simulation-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 40px;
}

.simulation-text h3 {
    color: #a48449;
    font-size: 42px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

.simulation-text p {
    color: #e0e0e0;
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.simulation-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    min-width: 400px;
}

.simulation-form label {
    font-size: 16px;
    color: #a48449;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.input-group {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.input-group input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid rgba(164, 132, 73, 0.3);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.input-group input:focus {
    outline: none;
    border-color: #a48449;
    box-shadow: 0 0 20px rgba(164, 132, 73, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-simulate {
    background: linear-gradient(135deg, #a48449 0%, #b8965a 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(164, 132, 73, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-simulate:hover {
    background: linear-gradient(135deg, #8f6f3a 0%, #a48449 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(164, 132, 73, 0.4);
}

.btn-simulate:active {
    transform: translateY(0);
}

.simulation-result {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    display: none;
}

.simulation-result.show {
    display: block;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-title {
    color: #25d366;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item:last-child {
    border-bottom: none;
    font-weight: bold;
    color: #a48449;
}

.result-label {
    color: #e0e0e0;
}

.result-value {
    color: white;
    font-weight: 600;
}

/* Advantages Section */
.advantages {
    background: #f5f5f5;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h3 {
    font-size: 36px;
    font-weight: bold;
    color: #1a1a1a;
    margin-top: 10px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.advantage-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: #a48449;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.advantage-content .advantage-number {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    display: block;
    margin-bottom: 10px;
}

.advantage-content p {
    color: #666;
    font-size: 14px;
}

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

/* Why Anticipate Section */
.why-anticipate {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-anticipate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(164, 132, 73, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.why-content {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.why-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.character-mockup {
    position: relative;
    width: 300px;
    height: 300px;
}

.character {
    position: relative;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #a48449 0%, #b8965a 100%);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
    box-shadow: 0 20px 40px rgba(164, 132, 73, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.badge {
    position: absolute;
    top: -15px;
    right: -25px;
    background: #1a1a1a;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.speech-bubble {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 25px 30px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    max-width: 280px;
    border: 2px solid #f0f0f0;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid white;
}

.speech-bubble p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.why-text {
    flex: 1;
}

.why-text .section-header {
    text-align: left;
    margin-bottom: 50px;
}

.why-text .section-subtitle {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.why-text h3 {
    font-size: 48px;
    font-weight: bold;
    color: #1a1a1a;
    margin-top: 15px;
    line-height: 1.2;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.why-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border-left: 4px solid #a48449;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.why-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.why-point h4 {
    color: #a48449;
    font-size: 22px;
    font-weight: bold;
    margin: 0;
    flex-shrink: 0;
    min-width: 120px;
}

.why-point p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* About Us Section */
.about {
    background: #1a1a1a;
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(164, 132, 73, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.about-text {
    flex: 1;
    max-width: 500px;
}

.about-text h3 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text p {
    font-size: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.about-stats {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 600px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.stat-card.yellow {
    background: linear-gradient(135deg, #a48449 0%, #8f6f3a 100%);
    color: white;
    grid-column: 2;
    grid-row: 1;
}

.stat-card.white {
    background: white;
    color: #1a1a1a;
    grid-column: 2;
    grid-row: 2;
}

.stat-card.gray {
    background: #2c2c2c;
    color: white;
    grid-column: 1;
    grid-row: 1;
    border: 1px solid #333;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-card p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

.standalone-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.standalone-stat .stat-number {
    font-size: 32px;
    font-weight: bold;
    color: white;
    margin-bottom: 8px;
}

.standalone-stat p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.client-avatars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.avatar {
    width: 24px;
    height: 24px;
    background: #a48449;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* How to Get Section */
.how-to-get {
    background: #f5f5f5;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.how-content {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.how-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-person {
    width: 100%;
    max-width: 400px;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-person img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    display: block;
}

.how-text {
    flex: 1;
    max-width: 600px;
}

.how-text .section-subtitle {
    color: #a48449;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 18px;
    display: block;
}

.how-text h3 {
    font-size: 48px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0 0 50px 0;
    line-height: 1.2;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.step {
    display: flex;
    align-items: center;
    gap: 22px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 22px 28px;
    transition: box-shadow 0.3s, transform 0.3s;
    border-left: 5px solid #a48449;
}

.step:hover {
    box-shadow: 0 8px 32px rgba(164,132,73,0.13);
    transform: translateY(-3px) scale(1.02);
}

.step-number {
    background: linear-gradient(135deg, #a48449 0%, #b8965a 100%);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(164,132,73,0.15);
    flex-shrink: 0;
    border: 2px solid #fff;
}

.step p {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    flex: 1;
}

.how-text .btn-primary {
    margin-top: 30px;
    font-size: 20px;
    padding: 18px 40px;
    border-radius: 30px;
    background: linear-gradient(135deg, #a48449 0%, #b8965a 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(164,132,73,0.18);
    font-weight: bold;
    letter-spacing: 1px;
    border: none;
    transition: background 0.3s, transform 0.3s;
}

.how-text .btn-primary:hover {
    background: linear-gradient(135deg, #8f6f3a 0%, #a48449 100%);
    transform: translateY(-2px) scale(1.03);
}

/* Testimonials Section */
.testimonials {
    background: #f5f5f5;
    padding: 80px 0;
    width: 100%;
}

.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto 50px;
    max-width: 1200px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}.testimonial-avatar {
    margin-bottom: 20px;
}

.testimonial-avatar .avatar,
.testimonial-avatar .avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
    object-fit: cover;
}

.testimonial-avatar .avatar {
    background: #333;
}

.testimonial-content h4 {
    font-size: 18px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.rating {
    color: #a48449;
    margin-bottom: 15px;
}

.rating i {
    margin-right: 2px;
}

.testimonial-content p {
    color: #666;
    font-style: italic;
}

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

/* FAQ Section */
.faq {
    background: #f5f5f5;
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-question h4 {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
}

.faq-question i {
    color: #a48449;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Policy Pages */
.policy-section {
    padding: 120px 0 60px;
    background: #f5f5f5;
}

.policy-section h1 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.policy-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h2 {
    color: #1a1a1a;
    font-size: 24px;
    margin: 30px 0 15px;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.policy-content ul {
    list-style-type: disc;
    margin: 15px 0;
    padding-left: 20px;
}

.policy-content ul li {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.policy-content .last-update {
    margin-top: 40px;
    font-style: italic;
    color: #999;
    text-align: right;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-links span {
    font-weight: bold;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #a48449;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.link-group h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #a48449;
}

.link-group a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.link-group a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.8;
    margin-bottom: 10px;
}

.legal-text {
    font-size: 12px;
    line-height: 1.4;
    opacity: 0.6;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
    z-index: 1000;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

a.btn-primary, a.btn-whatsapp, a.floating-whatsapp {
    text-decoration: none !important;
}
a.btn-primary:hover, a.btn-primary:focus,
a.btn-whatsapp:hover, a.btn-whatsapp:focus,
a.floating-whatsapp:hover, a.floating-whatsapp:focus {
    text-decoration: none !important;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .hero-person {
        max-width: 100%;
        margin-top: 20px;
    }
    
    .hero-person img {
        min-height: 500px;
        object-fit: contain;
    }
    
    .simulation {
        margin-top: -80px;
        padding: 30px 0 40px;
    }
    
    .simulation-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .simulation-text h3 {
        font-size: 32px;
    }
    
    .simulation-form {
        min-width: auto;
        width: 100%;
        padding: 30px 20px;
    }
    
    .input-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .input-group input {
        width: 100%;
        text-align: center;
    }
    
    .btn-simulate {
        width: 100%;
        justify-content: center;
    }
    
    .simulation-result {
        margin-top: 30px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .why-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .character-mockup {
        width: 250px;
        height: 250px;
    }
    
    .character {
        width: 200px;
        height: 200px;
        font-size: 18px;
    }
    
    .speech-bubble {
        top: -60px;
        max-width: 220px;
        padding: 20px 25px;
    }
    
    .speech-bubble p {
        font-size: 14px;
    }
    
    .why-text h3 {
        font-size: 36px;
    }
    
    .why-point {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .why-point h4 {
        min-width: auto;
        font-size: 20px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .about-text h3 {
        font-size: 36px;
    }
    
    .about-text p {
        font-size: 18px;
    }
    
    /* Centralização refinada dos cards Sobre nós no mobile */
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        justify-items: center;
        align-items: start;
        place-items: center;
    }

    .stat-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .stat-card, .standalone-stat {
        width: 90%;
        max-width: 360px;
        text-align: center;
        margin: 0 auto;
    }

    .how-content {
        flex-direction: column;
    }
    
    .hero-person, .how-person {
        max-width: 350px;
        height: auto;
    }
    
    
    .testimonials {
        padding: 40px 20px;
    }

    .testimonials .container {
        padding: 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 350px;
        margin: 0 auto 30px;
    }

    .testimonials .section-header {
        margin-bottom: 30px;
        text-align: center;
    }

    .testimonial-card {
        width: 100%;
        padding: 20px;
    }

    .testimonial-avatar {
        display: flex;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .how-content {
        flex-direction: column;
        gap: 50px;
    }
    .how-text h3 {
        font-size: 36px;
    }
    .steps {
        gap: 18px;
    }
    .step {
        padding: 18px 16px;
        gap: 16px;
    }
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .how-person {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .section-header h3 {
        font-size: 28px;
    }
}
