:root {
    --primary: #25D366;
    --primary-dark: #128C7E;
    --secondary: #34B7F1;
    --dark: #111827;
    --light: #F9FAFB;
    --gray: #9CA3AF;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif !important;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

body {
    background: linear-gradient(120deg, #FFF9F0 0%, #FFEFD0 40%, #FFECB3 70%, #F5E6FA 100%);
    color: var(--dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Header */
header {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #000 !important;
    box-shadow: none !important;
    border: none !important;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    position: relative;
    display: flex;
    align-items: center;
}

.logo img {
    height: 48px;
    width: auto;
    margin-right: 10px;
}

.logo span {
    color: #fff;
    background: none;
    -webkit-text-fill-color: #fff;
    text-shadow: 0 2px 12px rgba(255,255,255,0.25), 0 1px 2px rgba(0,0,0,0.12);
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
    background: radial-gradient(circle at 70% 30%, rgba(37, 211, 102, 0.15), transparent 40%),
               radial-gradient(circle at 30% 70%, rgba(52, 183, 241, 0.15), transparent 40%);
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(0) translateX(20px);
    }
    75% {
        transform: translateY(20px) translateX(10px);
    }
}

.hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
}

.hero-image {
    flex: 0 0 210px;
    position: relative;
    margin-left: -30px;
    margin-right: 40px;
    max-width: 210px;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.hero-image::before {
    display: none !important;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
    position: relative;
    z-index: 20;
    padding-top: 0.5em;
    width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 2.7rem);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.gradient-text {
    background: linear-gradient(90deg, #FFB800 0%, #FF3D00 40%, #FF00A8 70%, #A100FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #111;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.6;
    width: 100%;
    box-sizing: border-box;
}

.estude-text {
    display: inline;
}

/* Chat Demo Section */
.chat-demo {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(circle at 30% 30%, rgba(37, 211, 102, 0.07), transparent 40%),
               radial-gradient(circle at 70% 70%, rgba(52, 183, 241, 0.07), transparent 40%);
    padding-left: 400px;
}

.section-title {
    text-align: center;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 400;
    margin-bottom: 60px;
    font-family: 'Poppins', sans-serif;
}

.chat-demo-flex {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
    justify-content: flex-start;
    margin-top: 32px;
    margin-left: 0;
}

.chat-explain {
    flex: 0 0 270px;
    max-width: 270px;
    font-size: 1rem;
    color: #111;
    text-align: left;
    opacity: 0.95;
    margin-top: 18px;
    line-height: 1.5;
    padding-right: 18px;
    padding-left: 20px;
}

.chat-container {
    max-width: 300px;
    min-width: 0;
    width: 100%;
    margin: 0;
    box-shadow: 0 10px 24px -8px rgba(0,0,0,0.08);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    position: relative;
}

.chat-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/wpp_background.png') repeat;
    background-size: 100% 100%;
    border-radius: 20px;
    z-index: 0;
}

.chat-header, .chat-messages, .chat-input {
    position: relative;
    z-index: 1;
    padding-left: 18px;
}

.chat-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background: linear-gradient(90deg, #FFB800, #FF3D00);
    color: white;
    border-radius: 20px 20px 0 0;
}

.chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.chat-subtitle {
    font-size: 0.8rem;
    opacity: 0.8;
}

.chat-messages {
    padding: 15px;
    height: 320px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    border-radius: 0;
}

.chat-container .chat-messages::-webkit-scrollbar {
    width: 8px;
    background: transparent;
}
.chat-container .chat-messages::-webkit-scrollbar-thumb {
    background: #e1e1e1;
    border-radius: 8px;
    border: 2px solid #fff;
}
.chat-container .chat-messages::-webkit-scrollbar-thumb:hover {
    background: #c1c1c1;
}
.chat-container .chat-messages {
    scrollbar-width: thin;
    scrollbar-color: #e1e1e1 #fff;
}

.message {
    max-width: 85%;
    margin-bottom: 12px;
    padding: 10px 15px;
    border-radius: 16px !important;
    line-height: 1.4;
    font-size: 0.95rem;
}

.user-message {
    align-self: flex-end;
    background: #E5E7EB;
    color: var(--dark);
    border-bottom-right-radius: 5px;
    border-radius: 18px !important;
}

.bot-message {
    align-self: flex-start;
    background: linear-gradient(90deg, #FFB800, #FF3D00);
    color: white;
    border-bottom-left-radius: 5px;
    border-radius: 18px !important;
}

.typing-indicator {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    align-self: flex-start;
}

.chat-container .typing-dot {
    background: #fff !important;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--gray);
    border-radius: 50%;
    margin: 0 2px;
    animation: typingAnimation 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.chat-input {
    padding: 12px 15px;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    border-top: 1px solid #E5E7EB;
    border-radius: 0 0 20px 20px;
}

.chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 25px;
    background: white;
    font-size: 0.95rem;
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chat-input button {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: linear-gradient(90deg, #FFB800, #FF3D00);
    color: white;
    border-radius: 50%;
    margin-left: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(255, 69, 0, 0.3);
}

.chat-input button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 69, 0, 0.4);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: transparent;
}

.features-horizontal {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0 15px;
}

.feature-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 4px solid transparent;
    border-image: linear-gradient(to bottom, #FFB800, #FF3D00, #A100FF);
    border-image-slice: 1;
    margin-bottom: -10px;
}

.feature-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.85);
}

.feature-content {
    flex: 1;
}

.feature-horizontal .feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(45deg, #FFB800, #FF3D00, #FF00A8, #A100FF);
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-horizontal .feature-icon svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.feature-horizontal .feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111;
}

.feature-horizontal .feature-description {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .feature-horizontal {
        padding: 20px;
        gap: 15px;
    }
    
    .feature-horizontal .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-horizontal .feature-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .feature-horizontal .feature-title {
        font-size: 18px;
    }
    
    .feature-horizontal .feature-description {
        font-size: 14px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,184,0,0.1), rgba(255,61,0,0.1));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFB800, #FF3D00);
    color: white;
    font-size: 28px;
    border-radius: 20px;
    margin: 0 auto 25px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.feature-description {
    color: #4B5563;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: radial-gradient(circle at 70% 30%, rgba(37, 211, 102, 0.07), transparent 40%),
               radial-gradient(circle at 30% 70%, rgba(52, 183, 241, 0.07), transparent 40%);
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 100px;
    color: rgba(37, 211, 102, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4B5563;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='2' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/svg%3E") repeat;
}

.cta-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.cta-subtitle {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
}

/* Button styles with hover fix */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.6s cubic-bezier(.4,0,.2,1);
    z-index: 1;
}

/* Create a larger hit area */
.btn::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 22px;
    z-index: -1;
}

/* Apply hover styles to both :hover and .hover-active states */
.btn:hover, .btn.hover-active {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #FFB800 0%, #FF3D00 40%, #FF00A8 70%, #A100FF 100%);
    color: white;
    box-shadow: 0 4px 10px rgba(255, 69, 0, 0.3);
    background-size: 200% auto;
    background-position: left center;
}

.btn-primary:hover, .btn-primary.hover-active {
    background-position: right center;
}

.btn-secondary {
    position: relative;
    overflow: hidden;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-secondary:hover, .btn-secondary.hover-active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover, .btn-outline.hover-active {
    background: rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    pointer-events: none;
    animation: shine 2.2s infinite;
}

@keyframes shine {
    0% {
        left: -60%;
    }
    60% {
        left: 110%;
    }
    100% {
        left: 110%;
    }
}

.btn-primary.btn-large.btn-icon {
    display: inline-flex;
    margin-left: 0;
    margin-right: 0;
}

/* Footer */
footer {
    background: #000;
    color: white;
    padding: 30px 0;
}

.footer-top {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 30px;
    width: auto;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.footer-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 0 15px 0;
}

.footer-bottom {
    display: flex;
    justify-content: flex-end;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.copyright a {
    background: linear-gradient(90deg, #FFB800, #FF3D00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.copyright a:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    footer {
        padding: 24px 0;
    }
    
    .footer-logo img {
        height: 24px;
    }
    
    .footer-logo span {
        font-size: 18px;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
}

/* Top Banner */
.top-banner {
    width: 100%;
    background: #000;
    color: #d1d5db;
    text-align: center;
    font-size: 0.82rem;
    padding: 5px 0 4px 0;
    letter-spacing: 0.01em;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    z-index: 200;
    position: fixed;
    top: 0;
    left: 0;
}

.highlight-banner {
    color: #fff;
    text-decoration: underline;
}

/* Speech Balloon */
.balao-svg-container {
    position: absolute;
    left: 210px;
    bottom: calc(100% - 60px);
    z-index: 10;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}

.balao-svg-text {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    fill: #fff;
    dominant-baseline: middle;
}

.balao-svg-container.show-balao {
    opacity: 1;
    transform: translateY(0);
}

/* Add this new dedicated media query specifically for the balloon in tablet view */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    .balao-svg-container {
        left: 115px !important;
        bottom: calc(100% - 20px) !important;
        max-width: 320px !important;
        width: auto !important;
        z-index: 999 !important;
    }
    
    .balao-svg-container svg#balao-svg,
    .balao-svg-container svg#balao-svg-shadow {
        width: 200px !important;
        height: auto !important;
        max-width: 200px !important;
    }
    
    .balao-svg-text {
        font-size: 1rem !important;
        line-height: 1.2 !important;
    }
}

/* Tablet Responsive Styles (1024x768) */
@media (max-width: 1024px) {
    /* Container adjustments to prevent overflow */
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    /* Fix for all sections that could cause overflow */
    section {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .hero {
        overflow: hidden;
        width: 100%;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 10px;
        justify-content: space-between;
    }
    
    .hero-image {
        flex: 0 0 130px;
        max-width: 130px;
        margin-left: -15px;
        margin-right: 30px;
        align-self: flex-start;
    }
    
    .balao-svg-container {
        left: 130px;
        bottom: calc(100% - 40px);
        max-width: 280px;
        width: 100%;
    }
    
    .balao-svg-container svg {
        width: 280px;
        height: auto;
        max-width: 100%;
    }
    
    .balao-svg-text {
        font-size: 0.95rem;
    }
    
    .hero-text {
        max-width: 420px;
        width: auto;
        box-sizing: border-box;
        padding-left: 0;
        margin-left: 0; 
        margin-right: 20px;
        flex: 0 0 auto;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 3vw, 2.2rem);
        margin-bottom: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 1.8vw, 1.1rem);
        margin-bottom: 30px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Complete overhaul of the app-hero section for tablet */
    .app-hero-split {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0 !important;
        padding: 30px 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 80px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .app-hero-text {
        grid-column: 1 !important;
        margin: 0 !important;
        padding-right: 20px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .app-hero-demo {
        grid-column: 2 !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .app-hero-demo .chat-container {
        max-width: 90% !important;
        width: auto !important;
        margin: 0 auto !important;
        transform: scale(0.9) !important;
        transform-origin: center !important;
        box-sizing: border-box !important;
    }
    
    /* Fix for other sections that might cause overflow */
    .resources-split, 
    .kids-split, 
    .accessibility-split {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        overflow: hidden !important;
        display: flex;
        flex-wrap: wrap;
    }
    
    /* Fix resources section specifically */
    .resources-split {
        padding-left: 20px !important;
        gap: 30px !important;
    }
    
    .resources-image {
        flex: 1 1 auto;
        max-width: 45%;
        margin-left: 0;
    }
    
    .resources-text {
        flex: 1 1 auto;
        max-width: 45%;
        margin-left: 0;
    }
    
    /* Other fixes for specific sections */
    .app-hero-title-section,
    .resources-title-section,
    .kids-title-section,
    .accessibility-title-section,
    .features,
    .faq-section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Fix section titles that might be too long */
    .app-hero-main-title,
    .app-hero-main-subtitle,
    .resources-title,
    .resources-title-black,
    .kids-title,
    .kids-title-black,
    .accessibility-title,
    .accessibility-title-black,
    .section-title {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Botões do header menores em mobile */
    header nav div .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        font-weight: 500;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        margin: 0 0 24px 0;
        max-width: 120px;
    }
    .hero-text {
        text-align: center;
    }
    .chat-messages {
        height: 300px;
    }
    .feature-card {
        padding: 30px 20px;
    }
    .testimonial-card {
        padding: 30px;
    }
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    .hero-free-trial {
        text-align: center;
    }
}

@media (max-width: 600px) {
    /* Botões do header ainda menores em telas muito pequenas */
    header nav div .btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        font-weight: 500;
    }
    
    /* Ajuste do gap entre os botões */
    header nav div[style*="display: flex"] {
        gap: 0.5rem !important;
    }
    .top-banner {
        font-size: 0.75rem;
        padding: 4px 0 3px 0;
    }
    header {
        top: 20px;
    }
    .hero-content {
        flex-direction: column;
    }
    .hero-image {
        position: relative !important;
        top: 110px !important;
        margin: 0 0 0 4px !important;
        max-width: 100px;
        align-items: flex-start !important;
        align-self: flex-start !important;
    }
    .balao-svg-container {
        left: 0 !important;
        bottom: calc(100% - 10px) !important;
        position: relative !important;
        margin-top: 0 !important;
        margin-bottom: 12px !important;
        margin-left: 80px !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: 65vw !important;
        justify-content: flex-start !important;
    }
    .balao-svg-container svg {
        width: 65vw !important;
        min-width: 100px !important;
        max-width: 65vw !important;
        height: auto !important;
    }
    .balao-svg-text {
        font-size: 0.85rem !important;
    }
    .estude-text {
        display: block;
        margin-top: 10px;
    }
    .hero-free-trial {
        max-width: 90vw;
        font-size: 0.52rem;
        margin-left: 84px !important;
    }
    .app-hero-demo .chat-container {
        max-width: 280px;
        overflow: hidden;
        border-radius: 20px;
    }
    .chat-container::before {
        background-size: 70% 70%;
        background-repeat: repeat;
        border-radius: 20px;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    .chat-messages {
        height: 280px;
    }
    .chat-header {
        padding: 12px;
    }
    .chat-input {
        padding: 10px 12px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .chat-input input {
        padding: 8px 10px;
        font-size: 0.9rem;
        width: calc(100% - 50px);
        min-width: 0;
    }
    .chat-input button {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 4px;
    }
    .chat-input button img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }
    .message {
        max-width: 75%;
    }
    .bot-message {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    .accessibility-title-section h2.accessibility-title, 
    .accessibility-title-section h2.accessibility-title-black {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 400px) {
    .app-hero-demo .chat-container {
        max-width: 250px;
    }
    .chat-container::before {
        background-size: 50% 50%;
    }
    .chat-messages {
        height: 250px;
    }
    .chat-input {
        padding: 8px 10px;
    }
    .chat-input input {
        padding: 7px 9px;
        width: calc(100% - 45px);
        font-size: 0.85rem;
    }
    .chat-input button {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        margin-left: 3px;
    }
    .chat-input button img {
        width: 18px;
        height: 18px;
    }
    .message {
        font-size: 0.85rem;
        padding: 8px 12px;
        max-width: 70%;
    }
    .bot-message {
        font-size: 0.85rem;
        padding: 8px 10px;
    }
}

.hero-cta-row {
    display: unset;
    align-items: unset;
    gap: unset;
    margin-top: unset;
    justify-content: unset;
}

.hero-free-trial {
    display: block;
    font-size: 0.54rem;
    color: #666;
    text-align: left;
    opacity: 0.85;
    letter-spacing: 0.01em;
    max-width: 240px;
    margin: 8px 0 0 22px;
    line-height: 1.2;
    padding-bottom: 0;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .chat-demo {
        padding-left: 200px;
    }
    .chat-demo-flex {
        gap: 28px;
        margin-left: 0;
    }
    .chat-explain {
        flex-basis: 160px;
        max-width: 160px;
        font-size: 0.95rem;
        padding-right: 10px;
        padding-left: 10px;
    }
    .chat-container {
        max-width: 240px;
        border-radius: 16px;
    }
    .chat-header, .chat-messages, .chat-input {
        padding-left: 10px;
    }
}

@media (max-width: 700px) {
    .chat-demo {
        padding-left: 0;
    }
    .chat-demo-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-left: 0;
    }
    .chat-explain {
        max-width: 100%;
        text-align: center;
        margin: 0 0 10px 0;
        padding-right: 0;
        padding-left: 0;
    }
    .chat-container {
        max-width: 100%;
        margin: 0 auto;
        border-radius: 14px;
    }
    .chat-header, .chat-messages, .chat-input {
        padding-left: 0;
    }
}

.chat-explain-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.08;
    letter-spacing: -1px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}
.chat-explain-title .gradient-text {
    font-size: 2.6rem;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.08;
}
.chat-explain-bold {
    color: #111;
    font-weight: 800;
    font-size: 2.6rem;
    line-height: 1.08;
}
.chat-explain-desc {
    font-size: 1.08rem;
    color: #222;
    margin-top: 8px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.01em;
}
@media (max-width: 900px) {
    .chat-explain-title, .chat-explain-title .gradient-text, .chat-explain-bold {
        font-size: 2rem;
    }
    .chat-explain-desc {
        font-size: 0.98rem;
    }
}
@media (max-width: 700px) {
    .chat-explain-title, .chat-explain-title .gradient-text, .chat-explain-bold {
        font-size: 1.4rem;
    }
    .chat-explain-desc {
        font-size: 0.92rem;
    }
}

.app-hero-split {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-height: 520px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 80px auto;
    gap: 64px;
    padding: 40px 0 60px 0;
}
.app-hero-text {
    flex: 1 1 0;
    max-width: 420px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 60px;
}
.app-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.08;
    letter-spacing: -1px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}
.app-hero-title .gradient-text {
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.08;
}
.app-hero-bold {
    color: #111;
    font-weight: 400;
    font-size: 2.8rem;
    line-height: 1.08;
}
.app-hero-desc {
    font-size: 1.12rem;
    color: #222;
    margin-top: 8px;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.01em;
}
.app-hero-demo {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 340px;
    margin-right: 90px;
}
.app-hero-demo .chat-container {
    margin: 0;
    max-width: 350px;
    min-width: 0;
    width: 100%;
}
@media (max-width: 1100px) {
    .app-hero-split {
        gap: 32px;
        padding: 30px 0 40px 0;
    }
    .app-hero-text {
        max-width: 340px;
        margin-left: 30px;
    }
    .app-hero-title, .app-hero-title .gradient-text, .app-hero-bold {
        font-size: 2.1rem;
    }
    .app-hero-desc {
        font-size: 1rem;
    }
    .app-hero-demo {
        margin-right: -50px;
    }
}
@media (max-width: 800px) {
    .app-hero-split {
        flex-direction: column;
        min-height: unset;
        gap: 24px;
        padding: 24px 0 24px 0;
    }
    .app-hero-text {
        max-width: 100%;
        text-align: center;
        align-items: center;
        margin-left: 0;
    }
    .app-hero-title, .app-hero-title .gradient-text, .app-hero-bold {
        font-size: 1.4rem;
    }
    .app-hero-desc {
        font-size: 0.95rem;
    }
    .app-hero-demo {
        min-width: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-right: 0;
    }
    .app-hero-demo .chat-container {
        max-width: 320px;
        margin: 0 auto;
    }
}

.app-hero-title-section {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.app-hero-main-title {
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #111;
}

.app-hero-main-subtitle {
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.1;
    background: linear-gradient(90deg, #FFB800 0%, #FF3D00 40%, #FF00A8 70%, #A100FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

@media (max-width: 900px) {
    .app-hero-main-title, .app-hero-main-subtitle {
        font-size: 2.6rem;
    }
    
    .accessibility-title, .accessibility-title-black {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 600px) {
    .app-hero-main-title, .app-hero-main-subtitle {
        font-size: 2rem;
    }
    
    .accessibility-title, .accessibility-title-black {
        font-size: 1.8rem !important;
    }
    
    .accessibility-title-section {
        margin-top: 60px;
        margin-bottom: 30px;
    }
}

.resources-title-section {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.resources-title-black {    font-size: 2.8rem;    font-weight: 400;    line-height: 1.2;    color: #111;    margin-bottom: 5px;}.resources-title {    font-size: 2.8rem;    font-weight: 400;    line-height: 1.2;    color: #111;    background: linear-gradient(90deg, #FFB800 0%, #FF3D00 40%, #FF00A8 70%, #A100FF 100%);    -webkit-background-clip: text;    -webkit-text-fill-color: transparent;    background-clip: text;    text-fill-color: transparent;}

@media (max-width: 900px) {
    .resources-title, .resources-title-black {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .resources-title, .resources-title-black {
        font-size: 1.8rem;
    }
    
    .resources-title-section {
        margin-top: 60px;
        margin-bottom: 30px;
    }
}

.resources-split {    display: flex;    flex-direction: row;    align-items: center;    justify-content: flex-start;    min-height: 420px;    width: 100%;    max-width: 1200px;    margin: 0 auto 30px auto;    gap: 120px;    padding: 20px 0 30px 0;    padding-left: 100px;}

.resources-image {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 300px;
    max-width: 400px;
    margin-left: -40px;
}

.resources-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.resources-text {
    flex: 1 1 0;
    max-width: 500px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 20px;
}

.resources-text-title {
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #111;
}

.resources-text-title .gradient-text {
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.resources-text-desc {
    font-size: 1.1rem;
    color: #222;
    margin-top: 8px;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.01em;
}

@media (max-width: 1100px) {
    .resources-split {
        gap: 32px;
        padding: 30px 0 40px 0;
        padding-left: 50px;
    }
    .resources-text {
        max-width: 440px;
    }
    .resources-text-title, .resources-text-title .gradient-text {
        font-size: 2rem;
    }
    .resources-text-desc {
        font-size: 1rem;
    }
}

@media (max-width: 800px) {    .resources-split {        flex-direction: column;        min-height: unset;        gap: 24px;        padding: 24px 0 24px 0;    }    .resources-text {        max-width: 100%;        text-align: left;        align-items: flex-start;    }    .resources-text-title, .resources-text-title .gradient-text {        font-size: 1.4rem;    }    .resources-text-desc {        font-size: 0.95rem;    }    .resources-image {        min-width: 0;        max-width: 280px;        width: 100%;        margin-left: 0;        justify-content: center;        margin-bottom: 20px;    }}

@media (max-width: 600px) {    .resources-split {        gap: 10px;        margin-bottom: 40px;        padding: 0 15px;    }        .resources-image {        order: -1;        max-width: 240px;        margin: 0 auto;        margin-top: -30px;        margin-bottom: 10px;        display: flex;        justify-content: center;        align-items: center;    }        .resources-image img {        width: 90%;        max-width: 220px;        display: block;        margin: 0 auto;    }        .resources-text {        text-align: left;        align-items: flex-start;        padding: 0 15px;    }        .resources-title-section {        margin-bottom: 30px;    }}

@media (max-width: 400px) {
    .resources-image {
        max-width: 200px;
        margin-top: -20px;
    }
    
    .resources-image img {
        width: 100%;
        max-width: 180px;
    }
}

.accessibility-title-section {    text-align: center;    margin-top: 90px;    margin-bottom: 40px;    max-width: 800px;    margin-left: auto;    margin-right: auto;    padding: 0 20px;}

.accessibility-title-black {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.2;
    color: #111;
    margin-bottom: 5px;
}

.accessibility-title {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.2;
    color: #111;
    background: linear-gradient(90deg, #FFB800 0%, #FF3D00 40%, #FF00A8 70%, #A100FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.accessibility-split {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 80px auto;
    gap: 80px;
    padding: 20px 0 60px 0;
}

.accessibility-image {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    max-width: 400px;
    order: 2;
}

.accessibility-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.accessibility-text {
    flex: 1 1 0;
    max-width: 500px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 1;
    padding-left: 40px;
}

.accessibility-text-title {
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #111;
}

.accessibility-text-title .gradient-text {
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.accessibility-text-desc {
    font-size: 1.1rem;
    color: #222;
    margin-top: 8px;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.01em;
}

@media (max-width: 1100px) {
    .accessibility-split {
        gap: 32px;
        padding: 30px 0 40px 0;
    }
    .accessibility-text {
        max-width: 440px;
        padding-left: 20px;
    }
    .accessibility-text-title, .accessibility-text-title .gradient-text {
        font-size: 2rem;
    }
    .accessibility-text-desc {
        font-size: 1rem;
    }
}

@media (max-width: 800px) {    .accessibility-split {        flex-direction: column;        min-height: unset;        gap: 24px;        padding: 24px 0 24px 0;    }    .accessibility-text {        max-width: 100%;        text-align: left;        align-items: flex-start;        order: 2;        padding-left: 0;        padding-right: 15px;        padding-left: 15px;    }    .accessibility-image {        order: 1;        min-width: 0;        max-width: 280px;        width: 100%;    }    .accessibility-text-title, .accessibility-text-title .gradient-text {        font-size: 1.4rem;    }    .accessibility-text-desc {        font-size: 0.95rem;    }}

@media (max-width: 600px) {    .accessibility-split {        gap: 0;        padding: 0 15px;        margin-top: -20px;    }        .accessibility-image {        order: 1;        max-width: 240px;        margin: 0 auto;        margin-top: -25px;        margin-bottom: 20px;        display: flex;        justify-content: center;        align-items: center;    }        .accessibility-image img {        width: 90%;        max-width: 220px;        display: block;        margin: 0 auto;    }        .accessibility-text {        text-align: left;        align-items: flex-start;        padding: 0 15px;    }        .accessibility-text-title,     .accessibility-text-title .gradient-text {        font-size: 1.3rem !important;    }        .accessibility-text-desc {        font-size: 0.9rem !important;    }        .accessibility-text-desc p,    .accessibility-text-desc li {        font-size: 0.9rem !important;        line-height: 1.5;    }        .accessibility-text-desc strong {        font-size: 0.9rem !important;    }}

@media (max-width: 400px) {
    .accessibility-split {
        margin-top: -25px;
    }
    
    .accessibility-image {
        max-width: 200px;
        margin-top: -30px;
        margin-bottom: 15px;
    }
    
    .accessibility-image img {
        width: 100%;
        max-width: 180px;
    }
}

.faq-section {
    padding: 100px 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 184, 0, 0.05), transparent 40%),
                radial-gradient(circle at 70% 70%, rgba(255, 61, 0, 0.05), transparent 40%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    background: white;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px 24px;
    background: white;
    color: #111;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(90deg, rgba(255, 184, 0, 0.05), rgba(255, 61, 0, 0.05));
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #FF3D00;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
    opacity: 0;
    font-size: 1rem;
    font-weight: 300;
    color: #222;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
    opacity: 1;
}

@media (max-width: 768px) {
    .faq-container {
        padding: 0 20px;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 16px 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 16px;
    }
}

@media (max-width: 600px) {
    .app-hero-demo .chat-container {
        max-width: 260px;
    }
    .chat-messages {
        height: 280px;
    }
    .chat-header {
        padding: 12px;
    }
    .chat-input {
        padding: 10px 12px;
    }
    .chat-input input {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    .chat-input button {
        width: 38px;
        height: 38px;
    }
    .message {
        max-width: 75%;
    }
    .bot-message {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

@media (max-width: 400px) {
    .app-hero-demo .chat-container {
        max-width: 250px;
    }
    .chat-messages {
        height: 250px;
    }
    .message {
        font-size: 0.85rem;
        padding: 8px 12px;
        max-width: 70%;
    }
    .bot-message {
        font-size: 0.85rem;
        padding: 8px 10px;
    }
}

/* Mobile title size consistency - prevents unexpected cascading issues */
@media only screen and (max-width: 600px) {    section.resources-title-section h2,     section.accessibility-title-section h2,    section.kids-title-section h2 {        font-size: 1.8rem !important;    }}

@media (max-width: 600px) {
    .accessibility-split {
        gap: 0;
        padding: 0 15px;
        margin-top: -20px;
    }
    
    .accessibility-image {
        order: 1;
        max-width: 240px;
        margin: 0 auto;
        margin-top: -25px;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .accessibility-image img {
        width: 90%;
        max-width: 220px;
        display: block;
        margin: 0 auto;
    }
}

@media (max-width: 400px) {
    .accessibility-split {
        margin-top: -25px;
    }
    
    .accessibility-image {
        max-width: 200px;
        margin-top: -30px;
        margin-bottom: 15px;
    }
    
    .accessibility-image img {
        width: 100%;
        max-width: 180px;
    }
}

/* Development Modal */
.dev-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dev-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.dev-modal-content {
    background: white;
    margin: auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    transform: translateY(-30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dev-modal.show .dev-modal-content {
    transform: translateY(0);
}

.dev-modal-icon {
    font-size: 46px;
    margin-bottom: 15px;
}

.dev-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #888;
    transition: color 0.2s ease;
}

.dev-modal-close:hover {
    color: #333;
}

.dev-modal h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #111;
    background: linear-gradient(90deg, #FFB800 0%, #FF3D00 60%, #A100FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.dev-modal p {
    color: #444;
    line-height: 1.5;
    font-size: 1rem;
}

/* Seção Crianças */
.kids-title-section {    text-align: center;    padding: 30px 0 30px;    max-width: 900px;    margin: 0 auto;    position: relative;}

.kids-title-black {    font-size: clamp(2.8rem, 5vw, 2.8rem);    font-family: 'Poppins', sans-serif;    font-weight: 400;    margin-bottom: 5px;    color: #111;    letter-spacing: -0.5px;}

.kids-title {    font-size: clamp(2.8rem, 5vw, 2.8rem);    font-family: 'Poppins', sans-serif;    font-weight: 400;    background: linear-gradient(90deg, #FFB800 0%, #FF3D00 40%, #FF00A8 70%, #A100FF 100%);    -webkit-background-clip: text;    -webkit-text-fill-color: transparent;    background-clip: text;    text-fill-color: transparent;    position: relative;    display: inline-block;}

.kids-split {    display: flex;    flex-direction: row;    align-items: center;    gap: 60px;    padding: 10px 30px 40px;    max-width: 1200px;    margin: 0 auto;    position: relative;}

.kids-image {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}

.kids-image img {    width: 100%;    max-width: 350px;    height: auto;    border-radius: 20px;    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);}

.kids-text {
    flex: 0 0 55%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.kids-text-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
    position: relative;
}

.kids-text-title .gradient-text {    font-weight: 400;    background: linear-gradient(90deg, #FFB800 0%, #FF3D00 40%, #FF00A8 70%, #A100FF 100%);    -webkit-background-clip: text;    -webkit-text-fill-color: transparent;    background-clip: text;    text-fill-color: transparent;}

.kids-text-desc {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #333;
    line-height: 1.7;
    font-weight: 300;
    max-width: 600px;
}

@media (max-width: 1100px) {
    .kids-split {
        gap: 40px;
    }
    .kids-text {
        padding: 10px;
    }
    .kids-text-title, .kids-text-title .gradient-text {
        font-size: clamp(1.4rem, 3vw, 2rem);
    }
    .kids-text-desc {
        font-size: clamp(0.9rem, 2vw, 1rem);
    }
}

@media (max-width: 800px) {
    .kids-split {
        flex-direction: column-reverse;
        padding: 20px 20px 60px;
        gap: 30px;
    }
    .kids-text {
        flex: 0 0 100%;
        padding: 20px;
        width: 100%;
        max-width: 600px;
        text-align: center;
        align-items: center;
    }
    .kids-image {
        flex: 0 0 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .kids-text-title, .kids-text-title .gradient-text {
        font-size: clamp(1.3rem, 3vw, 1.8rem);
    }
    .kids-text-desc {
        font-size: clamp(0.9rem, 2vw, 1rem);
        text-align: left;
    }
}

@media (max-width: 600px) {
    .kids-split {
        padding: 10px 15px 50px;
    }
    .kids-image {
        padding: 10px;
        margin-left: -10px;
        margin-right: -10px;
        width: calc(100% + 20px);
        max-width: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
        .kids-image img {        width: 100%;        max-width: 240px;        height: auto;    }
        /* Mantendo a consistência com outras seções */
    .kids-text-desc {
        font-size: 0.95rem;
    }
    .kids-text-desc p,
    .kids-text-desc ul {
        margin-bottom: 15px;
    }
    .kids-text-desc strong {
        font-weight: 600;
    }
}

@media (max-width: 400px) {
    .kids-split {
        padding: 10px 10px 40px;
    }
    .kids-image {
        padding: 5px;
        margin-left: -5px;
        margin-right: -5px;
    }
        .kids-image img {        max-width: 180px;    }
}

/* Add specific styles for the kids section on tablet/1024px */
@media only screen and (min-width: 801px) and (max-width: 1024px) {
    .kids-split {
        display: flex !important;
        flex-direction: row !important;
        gap: 30px !important;
        padding: 10px 20px 40px !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    
    .kids-text {
        flex: 0 0 55% !important;
        max-width: 55% !important;
        order: 1 !important;
        padding: 0 !important;
    }
    
    .kids-image {
        flex: 0 0 40% !important;
        max-width: 40% !important;
        order: 2 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .kids-image img {
        max-width: 240px !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    .kids-text-title, 
    .kids-text-title .gradient-text {
        font-size: 1.8rem !important;
    }
    
    .kids-text-desc {
        font-size: 0.95rem !important;
    }
}

/* Specific fix for 1024x768 resolution only */
@media only screen and (min-width: 1000px) and (max-width: 1025px) {
    .hero-image {
        flex: 0 0 150px !important;
        max-width: 150px !important;
        margin-top: 60px !important;
        position: relative !important;
        top: 50px !important;
    }
    
    .hero-image img {
        width: 100% !important;
        height: auto !important;
    }
    
    .balao-svg-container {
        left: 150px !important;
        bottom: calc(100% - 50px) !important;
        max-width: 350px !important;
        width: auto !important;
        z-index: 999 !important;
        transform: none !important;
        position: absolute !important;
    }
    
    .balao-svg-container svg#balao-svg,
    .balao-svg-container svg#balao-svg-shadow {
        width: 350px !important;
        height: auto !important;
        max-width: 350px !important;
    }
    
    .balao-svg-text {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }
    
    .estude-text {
        display: block !important;
        margin-top: 10px !important;
    }
}

/* Seção Modo Treino */
.training-title-section {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.training-title-black {
    font-size: clamp(2.8rem, 5vw, 2.8rem);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin-bottom: 5px;
    color: #111;
    letter-spacing: -0.5px;
}

.training-title {
    font-size: clamp(2.8rem, 5vw, 2.8rem);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    background: linear-gradient(90deg, #FFB800 0%, #FF3D00 40%, #FF00A8 70%, #A100FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.training-split {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-height: 420px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    gap: 120px;
    padding: 20px 0 30px 0;
    padding-left: 100px;
}

.training-image {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 300px;
    max-width: 400px;
    margin-left: -40px;
}

.training-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.training-text {
    flex: 1 1 0;
    max-width: 500px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 20px;
}

.training-text-title {
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #111;
}

.training-text-title .gradient-text {
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.training-text-desc {
    font-size: 1.1rem;
    color: #222;
    margin-top: 8px;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.01em;
}

@media (max-width: 1100px) {
    .training-split {
        gap: 32px;
        padding: 30px 0 40px 0;
        padding-left: 50px;
    }
    .training-text {
        max-width: 440px;
    }
    .training-text-title, .training-text-title .gradient-text {
        font-size: 2rem;
    }
    .training-text-desc {
        font-size: 1rem;
    }
}

@media (max-width: 900px) {
    .training-title, .training-title-black {
        font-size: 2.2rem;
    }
}

@media (max-width: 800px) {
    .training-split {
        flex-direction: column;
        min-height: unset;
        gap: 24px;
        padding: 24px 0 24px 0;
    }
    .training-text {
        max-width: 100%;
        text-align: left;
        align-items: flex-start;
    }
    .training-text-title, .training-text-title .gradient-text {
        font-size: 1.4rem;
    }
    .training-text-desc {
        font-size: 0.95rem;
    }
    .training-image {
        min-width: 0;
        max-width: 280px;
        width: 100%;
        margin-left: 0;
        justify-content: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .training-title, .training-title-black {
        font-size: 1.8rem;
    }
    
    .training-title-section {
        margin-top: 60px;
        margin-bottom: 30px;
    }
    
    .training-split {
        gap: 10px;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .training-image {
        order: -1;
        max-width: 240px;
        margin: 0 auto;
        margin-top: -30px;
        margin-bottom: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .training-image img {
        width: 90%;
        max-width: 220px;
        display: block;
        margin: 0 auto;
    }
    
    .training-text {
        text-align: left;
        align-items: flex-start;
        padding: 0 15px;
    }
}

@media (max-width: 400px) {
    .training-image {
        max-width: 200px;
        margin-top: -20px;
    }
    
    .training-image img {
        width: 100%;
        max-width: 180px;
    }
}

.accessibility-title-section {
    text-align: center;
    margin-top: 90px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.accessibility-title-black {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.2;
    color: #111;
    margin-bottom: 5px;
}

.accessibility-title {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.2;
    color: #111;
    background: linear-gradient(90deg, #FFB800 0%, #FF3D00 40%, #FF00A8 70%, #A100FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.accessibility-split {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 80px auto;
    gap: 80px;
    padding: 20px 0 60px 0;
}

.accessibility-image {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    max-width: 400px;
    order: 2;
}

.accessibility-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.accessibility-text {
    flex: 1 1 0;
    max-width: 500px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 1;
    padding-left: 40px;
}

.accessibility-text-title {
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #111;
}

.accessibility-text-title .gradient-text {
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.accessibility-text-desc {
    font-size: 1.1rem;
    color: #222;
    margin-top: 8px;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.01em;
}

@media (max-width: 1100px) {
    .accessibility-split {
        gap: 32px;
        padding: 30px 0 40px 0;
    }
    .accessibility-text {
        max-width: 440px;
        padding-left: 20px;
    }
    .accessibility-text-title, .accessibility-text-title .gradient-text {
        font-size: 2rem;
    }
    .accessibility-text-desc {
        font-size: 1rem;
    }
}

@media (max-width: 800px) {    .accessibility-split {        flex-direction: column;        min-height: unset;        gap: 24px;        padding: 24px 0 24px 0;    }    .accessibility-text {        max-width: 100%;        text-align: left;        align-items: flex-start;        order: 2;        padding-left: 0;        padding-right: 15px;        padding-left: 15px;    }    .accessibility-image {        order: 1;        min-width: 0;        max-width: 280px;        width: 100%;    }    .accessibility-text-title, .accessibility-text-title .gradient-text {        font-size: 1.4rem;    }    .accessibility-text-desc {        font-size: 0.95rem;    }}

@media (max-width: 600px) {    .accessibility-split {        gap: 0;        padding: 0 15px;        margin-top: -20px;    }        .accessibility-image {        order: 1;        max-width: 240px;        margin: 0 auto;        margin-top: -25px;        margin-bottom: 20px;        display: flex;        justify-content: center;        align-items: center;    }        .accessibility-image img {        width: 90%;        max-width: 220px;        display: block;        margin: 0 auto;    }        .accessibility-text {        text-align: left;        align-items: flex-start;        padding: 0 15px;    }        .accessibility-text-title,     .accessibility-text-title .gradient-text {        font-size: 1.3rem !important;    }        .accessibility-text-desc {        font-size: 0.9rem !important;    }        .accessibility-text-desc p,    .accessibility-text-desc li {        font-size: 0.9rem !important;        line-height: 1.5;    }        .accessibility-text-desc strong {        font-size: 0.9rem !important;    }}

@media (max-width: 400px) {
    .accessibility-split {
        margin-top: -25px;
    }
    
    .accessibility-image {
        max-width: 200px;
        margin-top: -30px;
        margin-bottom: 15px;
    }
    
    .accessibility-image img {
        width: 100%;
        max-width: 180px;
    }
}

.faq-section {
    padding: 100px 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 184, 0, 0.05), transparent 40%),
                radial-gradient(circle at 70% 70%, rgba(255, 61, 0, 0.05), transparent 40%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    background: white;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px 24px;
    background: white;
    color: #111;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(90deg, rgba(255, 184, 0, 0.05), rgba(255, 61, 0, 0.05));
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #FF3D00;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
    opacity: 0;
    font-size: 1rem;
    font-weight: 300;
    color: #222;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
    opacity: 1;
}

@media (max-width: 768px) {
    .faq-container {
        padding: 0 20px;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 16px 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 16px;
    }
}

@media (max-width: 600px) {
    .app-hero-demo .chat-container {
        max-width: 260px;
    }
    .chat-messages {
        height: 280px;
    }
    .chat-header {
        padding: 12px;
    }
    .chat-input {
        padding: 10px 12px;
    }
    .chat-input input {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    .chat-input button {
        width: 38px;
        height: 38px;
    }
    .message {
        max-width: 75%;
    }
    .bot-message {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

@media (max-width: 400px) {
    .app-hero-demo .chat-container {
        max-width: 250px;
    }
    .chat-messages {
        height: 250px;
    }
    .message {
        font-size: 0.85rem;
        padding: 8px 12px;
        max-width: 70%;
    }
    .bot-message {
        font-size: 0.85rem;
        padding: 8px 10px;
    }
}

/* Mobile title size consistency - prevents unexpected cascading issues */
@media only screen and (max-width: 600px) {    section.resources-title-section h2,     section.accessibility-title-section h2,    section.kids-title-section h2 {        font-size: 1.8rem !important;    }}

@media (max-width: 600px) {
    .accessibility-split {
        gap: 0;
        padding: 0 15px;
        margin-top: -20px;
    }
    
    .accessibility-image {
        order: 1;
        max-width: 240px;
        margin: 0 auto;
        margin-top: -25px;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .accessibility-image img {
        width: 90%;
        max-width: 220px;
        display: block;
        margin: 0 auto;
    }
}

@media (max-width: 400px) {
    .accessibility-split {
        margin-top: -25px;
    }
    
    .accessibility-image {
        max-width: 200px;
        margin-top: -30px;
        margin-bottom: 15px;
    }
    
    .accessibility-image img {
        width: 100%;
        max-width: 180px;
    }
}

/* Development Modal */
.dev-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dev-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.dev-modal-content {
    background: white;
    margin: auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    transform: translateY(-30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dev-modal.show .dev-modal-content {
    transform: translateY(0);
}

.dev-modal-icon {
    font-size: 46px;
    margin-bottom: 15px;
}

.dev-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #888;
    transition: color 0.2s ease;
}

.dev-modal-close:hover {
    color: #333;
}

.dev-modal h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #111;
    background: linear-gradient(90deg, #FFB800 0%, #FF3D00 60%, #A100FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.dev-modal p {
    color: #444;
    line-height: 1.5;
    font-size: 1rem;
}

/* Seção Crianças */
.kids-title-section {    text-align: center;    padding: 30px 0 30px;    max-width: 900px;    margin: 0 auto;    position: relative;}

.kids-title-black {    font-size: clamp(2.8rem, 5vw, 2.8rem);    font-family: 'Poppins', sans-serif;    font-weight: 400;    margin-bottom: 5px;    color: #111;    letter-spacing: -0.5px;}

.kids-title {    font-size: clamp(2.8rem, 5vw, 2.8rem);    font-family: 'Poppins', sans-serif;    font-weight: 400;    background: linear-gradient(90deg, #FFB800 0%, #FF3D00 40%, #FF00A8 70%, #A100FF 100%);    -webkit-background-clip: text;    -webkit-text-fill-color: transparent;    background-clip: text;    text-fill-color: transparent;    position: relative;    display: inline-block;}

.kids-split {    display: flex;    flex-direction: row;    align-items: center;    gap: 60px;    padding: 10px 30px 40px;    max-width: 1200px;    margin: 0 auto;    position: relative;}

.kids-image {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}

.kids-image img {    width: 100%;    max-width: 350px;    height: auto;    border-radius: 20px;    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);}

.kids-text {
    flex: 0 0 55%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.kids-text-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
    position: relative;
}

.kids-text-title .gradient-text {    font-weight: 400;    background: linear-gradient(90deg, #FFB800 0%, #FF3D00 40%, #FF00A8 70%, #A100FF 100%);    -webkit-background-clip: text;    -webkit-text-fill-color: transparent;    background-clip: text;    text-fill-color: transparent;}

.kids-text-desc {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #333;
    line-height: 1.7;
    font-weight: 300;
    max-width: 600px;
}

@media (max-width: 1100px) {
    .kids-split {
        gap: 40px;
    }
    .kids-text {
        padding: 10px;
    }
    .kids-text-title, .kids-text-title .gradient-text {
        font-size: clamp(1.4rem, 3vw, 2rem);
    }
    .kids-text-desc {
        font-size: clamp(0.9rem, 2vw, 1rem);
    }
}

@media (max-width: 800px) {
    .kids-split {
        flex-direction: column-reverse;
        padding: 20px 20px 60px;
        gap: 30px;
    }
    .kids-text {
        flex: 0 0 100%;
        padding: 20px;
        width: 100%;
        max-width: 600px;
        text-align: center;
        align-items: center;
    }
    .kids-image {
        flex: 0 0 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .kids-text-title, .kids-text-title .gradient-text {
        font-size: clamp(1.3rem, 3vw, 1.8rem);
    }
    .kids-text-desc {
        font-size: clamp(0.9rem, 2vw, 1rem);
        text-align: left;
    }
}

@media (max-width: 600px) {
    .kids-split {
        padding: 10px 15px 50px;
    }
    .kids-image {
        padding: 10px;
        margin-left: -10px;
        margin-right: -10px;
        width: calc(100% + 20px);
        max-width: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
        .kids-image img {        width: 100%;        max-width: 240px;        height: auto;    }
        /* Mantendo a consistência com outras seções */
    .kids-text-desc {
        font-size: 0.95rem;
    }
    .kids-text-desc p,
    .kids-text-desc ul {
        margin-bottom: 15px;
    }
    .kids-text-desc strong {
        font-weight: 600;
    }
}

@media (max-width: 400px) {
    .kids-split {
        padding: 10px 10px 40px;
    }
    .kids-image {
        padding: 5px;
        margin-left: -5px;
        margin-right: -5px;
    }
        .kids-image img {        max-width: 180px;    }
}

/* Add specific styles for the kids section on tablet/1024px */
@media only screen and (min-width: 801px) and (max-width: 1024px) {
    .kids-split {
        display: flex !important;
        flex-direction: row !important;
        gap: 30px !important;
        padding: 10px 20px 40px !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    
    .kids-text {
        flex: 0 0 55% !important;
        max-width: 55% !important;
        order: 1 !important;
        padding: 0 !important;
    }
    
    .kids-image {
        flex: 0 0 40% !important;
        max-width: 40% !important;
        order: 2 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .kids-image img {
        max-width: 240px !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    .kids-text-title, 
    .kids-text-title .gradient-text {
        font-size: 1.8rem !important;
    }
    
    .kids-text-desc {
        font-size: 0.95rem !important;
    }
}

/* Specific fix for 1024x768 resolution only */
@media only screen and (min-width: 1000px) and (max-width: 1025px) {
    .hero-image {
        flex: 0 0 150px !important;
        max-width: 150px !important;
        margin-top: 60px !important;
        position: relative !important;
        top: 50px !important;
    }
    
    .hero-image img {
        width: 100% !important;
        height: auto !important;
    }
    
    .balao-svg-container {
        left: 150px !important;
        bottom: calc(100% - 50px) !important;
        max-width: 350px !important;
        width: auto !important;
        z-index: 999 !important;
        transform: none !important;
        position: absolute !important;
    }
    
    .balao-svg-container svg#balao-svg,
    .balao-svg-container svg#balao-svg-shadow {
        width: 350px !important;
        height: auto !important;
        max-width: 350px !important;
    }
    
    .balao-svg-text {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }
    
    .estude-text {
        display: block !important;
        margin-top: 10px !important;
    }
} 