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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #e5e5e5;
    background-color: #0a0a0a;
}

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

/* Header */
.header {
    background-color: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-img {
    height: 3rem;
    width: auto;
}

.nav {
    display: none;
    gap: 1.5rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ff6b35;
}

.btn-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #ff6b35;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-phone:hover {
    background-color: #e55a2b;
}

.btn-phone .icon {
    width: 1rem;
    height: 1rem;
}

.phone-number {
    display: none;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
    .phone-number {
        display: inline;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('imagens/creche_hero_unique_2025.jpg');
    background-size: cover;
    background-position: center;
    padding: 4rem 1rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.8));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-subtitle {
    color: #ff6b35;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.hero-subtitle-large {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-primary {
    background-color: #ff6b35;
    color: #fff;
}

.btn-primary:hover {
    background-color: #e55a2b;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
}

/* Diferenciais Section */
.diferenciais {
    padding: 4rem 0;
    background-color: #111;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #9ca3af;
}

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

.card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-color: rgba(156, 163, 175, 0.1);
}

.card-icon.primary {
    background-color: rgba(255, 107, 53, 0.1);
}

.card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: #9ca3af;
}

.card-icon.primary svg {
    stroke: #ff6b35;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.card-description {
    color: #9ca3af;
    line-height: 1.6;
}

/* Galeria Section */
.galeria {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.gallery-filters {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.875rem;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #ff6b35;
    border-color: #ff6b35;
}

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

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0.5rem;
    border: 2px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    border-color: #ff6b35;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.hidden {
    display: none;
}

/* Avaliação Comportamental Section */
.avaliacao {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.avaliacao-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
}

.avaliacao-icon {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(255, 107, 53, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avaliacao-icon svg {
    width: 2rem;
    height: 2rem;
    stroke: #ff6b35;
}

.avaliacao-content {
    flex: 1;
}

.avaliacao-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1rem;
}

.avaliacao-description {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.avaliacao-info {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.info-title {
    font-weight: 600;
    color: #fff;
}

.info-price {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.price-highlight {
    color: #ff6b35;
    font-weight: 600;
}

.info-badge {
    background-color: rgba(59, 130, 246, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    font-size: 0.875rem;
    font-weight: 500;
    color: #60a5fa;
}

@media (max-width: 768px) {
    .avaliacao-card {
        flex-direction: column;
    }
    .avaliacao-info {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Requisitos Section */
.requisitos {
    padding: 4rem 0;
    background-color: #111;
}

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

.requisito-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.requisito-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
}

.requisito-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.requisito-icon svg {
    width: 2rem;
    height: 2rem;
    stroke: #ff6b35;
}

.requisito-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.requisito-card p {
    color: #9ca3af;
    font-size: 0.9rem;
}

.requisito-card-destaque {
    grid-column: span 1;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 2px solid #ff6b35;
    position: relative;
    overflow: hidden;
}

.requisito-card-destaque::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, transparent);
}

.requisito-card-destaque:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.requisito-avaliacao-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.requisito-info-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #ff6b35;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.requisito-info-value {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Funcionamento Section */
.funcionamento {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

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

.funcionamento-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.funcionamento-card:hover {
    border-color: #ff6b35;
}

.funcionamento-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 107, 53, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.funcionamento-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: #ff6b35;
}

.funcionamento-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.funcionamento-content p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.funcionamento-content p strong {
    color: #fff;
}

/* Planos Section */
.planos {
    padding: 4rem 0;
    background-color: #111;
}

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

.plano-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    position: relative;
}

.plano-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.plano-card.destaque {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border-color: rgba(255, 107, 53, 0.3);
}

.plano-badge {
    display: inline-block;
    background-color: #ff6b35;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.plano-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.plano-price {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.plano-price span {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 400;
}

.plano-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.plano-features {
    list-style: none;
}

.plano-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.icon-small {
    width: 1.25rem;
    height: 1.25rem;
    stroke: #ff6b35;
    flex-shrink: 0;
}

/* Card Consolidado de Matrícula */
.matricula-completa {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
}

.matricula-beneficios {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

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

.beneficio-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    margin-top: 0.75rem;
}

.beneficio-item-text {
    color: #9ca3af;
    font-size: 0.85rem;
    line-height: 1.4;
}

.beneficio-video-small {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.beneficio-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.beneficio-video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.beneficio-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.beneficio-text {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsivo para Matrícula Consolidada */
@media (max-width: 768px) {
    .matricula-completa {
        grid-column: span 1;
    }

    .matricula-beneficios {
        grid-template-columns: 1fr;
    }
}

/* CTA Final Section */
.cta-final {
    padding: 4rem 0;
    background-color: #111;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: #9ca3af;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }

    .plano-price {
        font-size: 1.5rem;
    }
}

/* Seção de Matrícula */
.matricula-section {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.matricula-card-container {
    display: flex;
    justify-content: center;
}

.matricula-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 2.5rem;
    border-radius: 0.75rem;
    max-width: 800px;
    width: 100%;
}

.matricula-badge {
    display: inline-block;
    background-color: #ff6b35;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.matricula-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.matricula-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 2rem;
}

.matricula-features {
    list-style: none;
    text-align: left;
}

.matricula-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.beneficio-video-square {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0.5rem;
}

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

    .matricula-card {
        padding: 1.5rem;
    }

    .matricula-title {
        font-size: 1.25rem;
    }

    .matricula-price {
        font-size: 1.75rem;
    }
}
