body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background-color: #1E1E1E;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 70px;
    text-align: center;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #3B9930;
    box-shadow: 0 0 10px #3B9930;
    margin-bottom: 20px;
}

.agendamento {
    text-align: center;
    padding: 15px 20px;
    background-color: #1E1E1E;
}

.agendamento h2 {
    font-size: 26px;
    margin-bottom: 40px;
    color: #FFFFFF;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap;
    width: 100%;     
    max-width: 100%;    
}

.card {
    flex: none;
    width: 250px;
    background-color: #2F2F2F;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 1.5px 6px rgba(255, 255, 255, 0.205);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    display: block;
    width: 100%;
    height: auto;         
}

.card-info {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 14px;
    padding-top: 3px;
}

.card-info h3 {
    margin: 10px 0;
    text-align: left;
    font-size: 16px;
    color: #FFFFFF;
}

.card-info p {
    text-align: left;
    font-size: 14px;
    color: #969696;
    margin-bottom: 15px;
    font-weight: bold;
}

.card-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3B9930; 
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.card-btn:hover {
    background-color: #45a049;
}

@media (max-width: 700px) {
    .cards-container {
        flex-wrap: wrap;
    }
}

.cursos h2 {
    font-size: 26px;
    margin-bottom: 40px;
    color: #FFFFFF;
}

.brinquedos {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.brinquedos-link {
    position: relative;
    display: inline-block;
    text-decoration: none; 
}

.brinquedos-link img {
    max-width: 100%;
    height: auto;
    width: 100%;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 1.5px 6px rgba(240, 240, 240, 0.12);
}

.brinquedos-text {
    position: absolute;
    bottom: 20px;       
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.5); 
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
}

header h1 {
    margin: 10px 0 25px;
    font-size: 24px;
    color: #FFFFFF;
}

header p {
    margin: 0 0 20px;
    color: #AAAAAA;
}

.link-btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 25px 120px;
    padding-left: 120px;   /* empurra o texto para não colar na imagem */
    background: #2F2F2F;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
    overflow: hidden;
    font-size: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 1.5px 6px rgba(255, 255, 255, 0.205);
}

.btn-img {
    position: absolute;
    left: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Media queries para celular */
@media (max-width: 768px) {
    .link-btn {
        padding: 18px 60px;
        padding-left: 70px; /* ajusta para tablet */
        font-size: 16px;
    }

    .btn-img {
        width: 40px;
        height: 40px;
        left: 10px;
    }
}

@media (max-width: 480px) {
    .link-btn {
        padding: 15px 40px;
        padding-left: 55px; /* ajusta para celular */
        font-size: 14px;
    }

    .btn-img {
        width: 35px;
        height: 35px;
        left: 8px;
    }
}

footer img {
    width: 30px;
    margin: 10px 5px;
    vertical-align: middle;
}

.video {
    display: block;
    padding-top: 30px;
    padding-bottom: 5px;
    background-color: #1E1E1E;
    color: white;
    text-align: center; /* centraliza o conteúdo dentro da seção de vídeo */
}

.video h2 {
    margin-bottom: 30px;
}

.video-wrapper {
    position: relative;
    width: 100%;           /* ocupa 100% da largura do container */
    max-width: 100%;       /* nunca ultrapassa a tela */
    margin: 0 auto;        /* centraliza o vídeo */
    padding-top: 56.25%;   /* proporção 16:9 */
    overflow: visible;     /* permite que as setas fiquem fora do vídeo */
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 1.5px 6px rgba(255, 255, 255, 0.205);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.arrow-left, .arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0,0,0,0.7);
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 10px #000;
    z-index: 10;
    font-size: 24px;
    user-select: none;
}

.arrow-left {
    left: -50px; /* posição fora à esquerda */
}

.arrow-right {
    right: -50px; /* posição fora à direita */
}
/* deixa os cards com cursor de link */
.card {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* efeito ao passar o mouse */
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}


/* Media queries */
@media (max-width: 900px) {
    .container {
        padding: 20px;
    }
    .video-wrapper {
        max-width: 100%;
        padding-top: 56.25%;
    }
}

@media (max-width: 480px) {
    .brinquedos-text {
        font-size: 13px;
        padding: 6px 10px;
        background-color: rgba(0, 0, 0, 0.35);
        bottom: 10px;
    }
}
