/* ========== HERO CARROSSEL ========== */
.hero-carousel {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    margin-top: -20px;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay escuro sobre a imagem */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

/* Texto sobre o carrossel */
.carousel-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.carousel-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.carousel-text p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

/* Botão CTA */
.btn-saiba-mais {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.btn-saiba-mais:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}

/* Botões de navegação */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 30px;
}

.carousel-btn.next {
    right: 30px;
}

/* Indicadores */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.indicator.active {
    background: white;
    transform: scale(1.3);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ========== SEÇÃO DIFERENCIAIS ========== */
.diferenciais {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.diferenciais::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #3498db, #1abc9c, #f39c12, #e74c3c, #9b59b6, #2ecc71);
}

.diferenciais-header {
    text-align: center;
    margin-bottom: 70px;
}

.diferenciais h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.diferenciais h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #3498db;
    margin: 20px auto 0;
    border-radius: 2px;
}

.diferenciais-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.diferencial-card {
    background: white;
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #3498db, #1abc9c);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.diferencial-card:hover::before {
    transform: scaleX(1);
}

.diferencial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.diferencial-card:nth-child(2):hover::before {
    background: linear-gradient(to right, #1abc9c, #2ecc71);
}

.diferencial-card:nth-child(3):hover::before {
    background: linear-gradient(to right, #f39c12, #e67e22);
}

.diferencial-card:nth-child(4):hover::before {
    background: linear-gradient(to right, #e74c3c, #c0392b);
}

.diferencial-card:nth-child(5):hover::before {
    background: linear-gradient(to right, #9b59b6, #8e44ad);
}

.diferencial-card:nth-child(6):hover::before {
    background: linear-gradient(to right, #2ecc71, #27ae60);
}

.diferencial-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    transition: transform 0.3s ease;
}

.diferencial-card:hover .diferencial-icon {
    transform: scale(1.1) rotate(5deg);
}

.diferencial-icon svg {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.diferencial-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
}

.diferencial-card p {
    color: #7f8c8d;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Efeito de hover nos cards */
.diferencial-card:hover p {
    color: #555;
}

/* Animação de entrada */
.diferencial-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInCard 0.6s ease forwards;
}

.diferencial-card:nth-child(1) { animation-delay: 0.1s; }
.diferencial-card:nth-child(2) { animation-delay: 0.2s; }
.diferencial-card:nth-child(3) { animation-delay: 0.3s; }
.diferencial-card:nth-child(4) { animation-delay: 0.4s; }
.diferencial-card:nth-child(5) { animation-delay: 0.5s; }
.diferencial-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== SEÇÃO PRIMEIRA INFÂNCIA ========== */
.primeira-infancia-destaque {
    background-color: #f3e6d8;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.primeira-infancia-container {
    display: flex;
    align-items: center;
    min-height: 600px;
    max-width: 100%;
}

/* Lado esquerdo - Imagem */
.primeira-infancia-imagem {
    flex: 1;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.primeira-infancia-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.primeira-infancia-imagem:hover img {
    transform: scale(1.05);
}

.imagem-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(243, 230, 216, 0) 0%,
        rgba(243, 230, 216, 0.3) 80%,
        rgba(243, 230, 216, 1) 100%
    );
}

/* Lado direito - Conteúdo */
.primeira-infancia-conteudo {
    flex: 1;
    padding: 80px 60px;
    max-width: 650px;
    z-index: 2;
}

.etiqueta {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.primeira-infancia-conteudo h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.2;
    position: relative;
}

.primeira-infancia-conteudo h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #e74c3c;
    margin-top: 20px;
    border-radius: 2px;
}

.texto-destaque {
    margin-bottom: 40px;
}

.texto-destaque p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.texto-destaque p strong {
    color: #2c3e50;
    font-weight: 700;
}

.texto-destaque p:last-child {
    margin-bottom: 0;
    font-size: 1.15rem;
    color: #2c3e50;
}

/* Botão Primeira Infância */
.btn-primeira-infancia {
    background-color: #2c3e50;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid #2c3e50;
    letter-spacing: 0.5px;
}

.btn-primeira-infancia:hover {
    background-color: transparent;
    color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.2);
}

.btn-primeira-infancia svg {
    transition: transform 0.3s ease;
}

.btn-primeira-infancia:hover svg {
    transform: translateX(5px);
}
/* ========== SEÇÃO METODOLOGIA ========== */
.metodologia {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.metodologia::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(52, 152, 219, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(46, 204, 113, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.metodologia-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ========== LADO ESQUERDO ========== */
.metodologia-left {
    flex: 1;
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.etiqueta-metodologia {
    display: inline-block;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.metodologia-left h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.metodologia-descricao {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 35px;
}

.metodologia-lista {
    list-style: none;
    margin-bottom: 40px;
}

.metodologia-lista li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: #555;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.metodologia-lista li:last-child {
    border-bottom: none;
}

.metodologia-lista li svg {
    flex-shrink: 0;
}

.btn-proposta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2c3e50;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid #2c3e50;
    letter-spacing: 0.5px;
}

.btn-proposta:hover {
    background: transparent;
    color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.2);
}

.btn-proposta svg {
    transition: transform 0.3s ease;
}

.btn-proposta:hover svg {
    transform: translateX(5px);
}

/* ========== LADO DIREITO ========== */
.metodologia-right {
    flex: 1.2;
}

.metodologia-right h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.metodologia-right-desc {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 40px;
    line-height: 1.6;
}

.pilares-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pilar-card {
    display: flex;
    gap: 25px;
    padding: 30px;
    border-radius: 20px;
    background: white;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pilar-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--card-color);
    border-radius: 0 4px 4px 0;
    transition: width 0.3s ease;
}

.pilar-card:hover {
    border-color: var(--card-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateX(10px);
}

.pilar-card:hover::before {
    width: 8px;
}

.pilar-icone {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 5px;
}

.pilar-conteudo h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.pilar-conteudo p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========== ANIMAÇÕES ========== */
.pilar-card {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.6s ease forwards;
}

.pilar-card:nth-child(1) { animation-delay: 0.1s; }
.pilar-card:nth-child(2) { animation-delay: 0.3s; }
.pilar-card:nth-child(3) { animation-delay: 0.5s; }

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== ANIMAÇÕES ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

/* ========== SEÇÃO CONHEÇA NOSSA CASA ========== */
.nossa-casa {
    padding: 100px 0;
    background: linear-gradient(135deg, #faf9f7 0%, #f5f0eb 100%);
    position: relative;
    overflow: hidden;
}

.nossa-casa::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.nossa-casa-wrapper {
    display: flex;
    gap: 70px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== LADO ESQUERDO - VÍDEO ========== */
.nossa-casa-video {
    flex: 1;
    max-width: 600px;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.video-container video {
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* Botão de Play */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    padding: 0;
}

.video-container:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg circle {
    transition: all 0.3s ease;
}

.video-container:hover .video-play-btn svg circle {
    fill: #e74c3c;
}

.video-container:hover .video-play-btn svg path {
    fill: white;
}

/* Esconde o botão de play quando o vídeo está rodando */
.video-container.playing .video-play-btn {
    opacity: 0;
    pointer-events: none;
}

/* ========== LADO DIREITO - CONTEÚDO ========== */
.nossa-casa-conteudo {
    flex: 1;
}

.etiqueta-casa {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.nossa-casa-conteudo h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.nossa-casa-descricao {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Diferenciais da Casa */
.casa-diferenciais {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.casa-diferencial-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.casa-diferencial-icone {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.casa-diferencial-item:hover .casa-diferencial-icone {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.casa-diferencial-item h4 {
    font-size: 1.05rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 700;
}

.casa-diferencial-item p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
}

/* Botão */
.btn-casa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e74c3c;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid #e74c3c;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.btn-casa:hover {
    background: transparent;
    color: #e74c3c;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

.btn-casa svg {
    transition: transform 0.3s ease;
}

.btn-casa:hover svg {
    transform: translateX(5px);
}


/* ========== RESPONSIVO HOME ========== */
@media (max-width: 1024px) {
    .hero-carousel {
        height: 500px;
    }
    
    .carousel-text h1 {
        font-size: 2.5rem;
    }
    
    .carousel-text p {
        font-size: 1.1rem;
    }
    
      .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .diferenciais h2 {
        font-size: 2.3rem;
    }

        .primeira-infancia-conteudo {
        padding: 60px 40px;
    }
    
    .primeira-infancia-conteudo h2 {
        font-size: 2rem;
    }
    
    .texto-destaque p {
        font-size: 1rem;
    }
        .metodologia-wrapper {
        gap: 50px;
    }
    
    .metodologia-left h2 {
        font-size: 2.2rem;
    }
    
    .pilar-card {
        padding: 25px;
        gap: 20px;
    }

      .nossa-casa-wrapper {
        gap: 40px;
    }
    
    .nossa-casa-conteudo h2 {
        font-size: 2rem;
    }

}

@media (max-width: 768px) {
    .hero-carousel {
        height: 400px;
    }
    
    .carousel-text {
        left: 5%;
        right: 5%;
        text-align: center;
    }
    
    .carousel-text h1 {
        font-size: 2rem;
    }
    
    .carousel-text p {
        font-size: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
     .diferenciais {
        padding: 60px 0;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .diferenciais h2 {
        font-size: 2rem;
    }
    
    .diferenciais-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .diferencial-card {
        padding: 35px 25px;
    }
    
    .diferencial-card h3 {
        font-size: 1.2rem;
    }
    
    .diferencial-card p {
        font-size: 1rem;
    }

    .primeira-infancia-container {
        flex-direction: column;
    }
    
    .primeira-infancia-imagem {
        flex: none;
        width: 100%;
        height: 350px;
        order: -1;
    }
    
    .imagem-overlay {
        background: linear-gradient(
            to bottom,
            rgba(243, 230, 216, 0) 0%,
            rgba(243, 230, 216, 0.5) 70%,
            rgba(243, 230, 216, 1) 100%
        );
    }
    
    .primeira-infancia-conteudo {
        flex: none;
        width: 100%;
        padding: 50px 30px;
        text-align: center;
        max-width: 100%;
    }
    
    .primeira-infancia-conteudo h2 {
        font-size: 1.8rem;
    }
    
    .primeira-infancia-conteudo h2::after {
        margin: 20px auto 0;
    }
    
    .texto-destaque {
        text-align: left;
    }
    
    .btn-primeira-infancia {
        justify-content: center;
        width: 100%;
        max-width: 400px;
    }
     .nossa-casa {
        padding: 60px 0;
    }
    
    .nossa-casa-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    
    .nossa-casa-video {
        max-width: 100%;
        width: 100%;
    }
    
    .nossa-casa-conteudo {
        text-align: center;
    }
    
    .nossa-casa-conteudo h2 {
        font-size: 1.8rem;
    }
    
    .nossa-casa-descricao {
        font-size: 1rem;
    }
    
    .casa-diferencial-item {
        text-align: left;
    }
    
    .btn-casa {
        width: 100%;
        justify-content: center;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 350px;
    }
    
    .carousel-text h1 {
        font-size: 1.8rem;
    }
    
    .btn-saiba-mais {
        padding: 12px 30px;
        font-size: 1rem;
    }
     .diferenciais h2 {
        font-size: 1.8rem;
    }
    
    .diferencial-card {
        padding: 30px 20px;
    }
    
    .diferencial-icon svg {
        width: 50px;
        height: 50px;
    }

    .primeira-infancia-imagem {
        height: 250px;
    }
    
    .primeira-infancia-conteudo {
        padding: 40px 20px;
    }
    
    .primeira-infancia-conteudo h2 {
        font-size: 1.6rem;
    }
    
    .etiqueta {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .metodologia {
        padding: 60px 0;
    }
    
    .metodologia-left h2 {
        font-size: 1.8rem;
    }
    
    .metodologia-descricao {
        font-size: 1rem;
    }
    
    .metodologia-lista li {
        font-size: 0.95rem;
    }
    
    .metodologia-right h3 {
        font-size: 1.6rem;
    }
    
    .btn-proposta {
        padding: 15px 30px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
        max-width: 350px;
    }
}
 .nossa-casa-conteudo h2 {
        font-size: 1.6rem;
    }
    
    .casa-diferencial-item h4 {
        font-size: 0.95rem;
    }
    
    .casa-diferencial-item p {
        font-size: 0.85rem;
    }
    
    .btn-casa {
        padding: 15px 25px;
        font-size: 0.95rem;
    }