/* ========================================
   SECTIONS STYLES - DELL MUSIC
   ======================================== */

/* ========================================
   GALLERY STYLES
   ======================================== */
.gallery-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.gallery-header .btn-back {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    margin-right: 1rem;
    background: #2271b1;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gallery-header .btn-back:hover {
    background: #135e96;
}

.gallery-header .btn-back i {
    margin-right: 0.5rem;
}

.gallery-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #1d2327;
}

.albums-grid {
    transition: opacity 0.3s ease;
}

.albums-grid.loading {
    position: relative;
    min-height: 200px;
    opacity: 0.7;
    pointer-events: none;
}

.albums-grid.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2271b1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Estilos dos cards de álbum */
.album-card {
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

/* Grade de imagens/vídeos */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

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

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

/* Overlay para vídeos */
.gallery-item[data-type="video"] .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.gallery-item:hover .play-button {
    transform: scale(1.1);
}
   
/* ========================================
   GALLERY STYLES
   ======================================== */
.albums-grid.loading {
    position: relative;
    min-height: 200px;
    opacity: 0.7;
    pointer-events: none;
}

.albums-grid.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2271b1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.album-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-grid {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.gallery-grid.loading {
    opacity: 0.5;
}

/* ========================================
   GLOBAL SECTIONS
   ======================================== */

.section-title {
    margin-bottom: 0rem;
    position: relative;
}

.section-title .subtitle {
    font-size: 1rem;
    color: var(--cor-secundaria);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--cor-principal);
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* ========================================
   EVENTOS SECTION
   ======================================== */
   
.eventos {
    position: relative;
    overflow: hidden;
}

.eventos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .eventos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Grid específico para 3 eventos - 3 colunas em tablets */
    .eventos-grid-three {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .evento-card.featured {
        grid-column: span 2;
        display: grid;
        grid-template-columns: auto 1fr;
    }
}

@media (min-width: 1200px) {
    .eventos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Para telas grandes, garantir que 3 eventos ocupem toda a largura */
    .eventos-grid-three {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem; /* Aumentar gap para melhor distribuição */
    }
}

.evento-card {
    background: var(--cor-branco);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sombra);
    position: relative;
    transition: var(--transicao);
    display: flex;
    flex-direction: row;
}

.evento-card:hover,
.evento-card.is-hovered {
    transform: translateY(-5px);
    box-shadow: var(--sombra-hover);
}

.evento-card:hover .evento-date,
.evento-card.is-hovered .evento-date {
    background: var(--cor-secundaria);
    transition: background-color 0.3s ease;
}

.evento-card.featured {
    background: linear-gradient(to right, rgba(239, 91, 6, 0.05), rgba(239, 91, 6, 0.1));
    border: 1px solid rgba(239, 91, 6, 0.2);
}

.evento-card.featured .btn-primary {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 91, 6, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(239, 91, 6, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 91, 6, 0);
    }
}

.evento-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--cor-secundaria);
    color: var(--cor-branco);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(239, 91, 6, 0.3);
    transform: rotate(5deg);
    animation: wiggle 6s infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(5deg); }
    25% { transform: rotate(7deg); }
    50% { transform: rotate(3deg); }
    75% { transform: rotate(6deg); }
}

.evento-date {
    background: var(--cor-principal);
    color: var(--cor-branco);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    width: 100px;
    text-align: center;
}

.date-day {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.date-month {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.evento-content {
    padding: 1.5rem;
    flex: 1;
}

.evento-image {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.evento-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.evento-card:hover .evento-image img {
    transform: scale(1.05);
}

.evento-category {
    display: inline-block;
    background: rgba(239, 91, 6, 0.1);
    color: var(--cor-secundaria);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.evento-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.evento-card:hover h3 {
    color: var(--cor-secundaria);
}

.evento-card p {
    color: var(--cor-texto-claro);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.evento-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.evento-time,
.evento-location,
.evento-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.evento-time i,
.evento-location i,
.evento-price i {
    color: var(--cor-secundaria);
    font-size: 1rem;
}

/* Newsletter dentro da seção de eventos */
.eventos-newsletter {
    margin-top: 4rem;
    background: var(--cor-principal);
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.eventos-newsletter:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/eventos/newsletter-bg.png');
    background-size: cover;
    background-position: center center;
    opacity: 0.1;
    z-index: 0;
    filter: grayscale(30%);
}

.newsletter-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2rem;
}

@media (min-width: 992px) {
    .newsletter-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.newsletter-text h3 {
    color: var(--cor-branco);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
}

.newsletter-subscribe {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.newsletter-subscribe input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.newsletter-subscribe input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-subscribe button {
    padding: 12px 25px;
    border-radius: 10px;
}

.newsletter-message {
    margin-top: 1rem;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.newsletter-message.success {
    background: rgba(16, 185, 129, 0.2);
    border-left: 3px solid #10b981;
}

.newsletter-message.error {
    background: rgba(239, 68, 68, 0.2);
    border-left: 3px solid #ef4444;
}

.newsletter-message.fade-out {
    opacity: 0;
}

@media (max-width: 576px) {
    .evento-date {
        padding: 1rem;
        width: 80px;
    }
    
    .date-day {
        font-size: 2rem;
    }
    
    .date-month {
        font-size: 0.8rem;
    }
    
    .evento-content {
        padding: 1.2rem;
    }
    
    .evento-card h3 {
        font-size: 1.2rem;
    }
    
    .eventos-newsletter {
        padding: 2rem;
    }
    
    .newsletter-text h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-subscribe input {
        width: 100%;
    }
    
    .newsletter-subscribe button {
        width: 100%;
    }
}
.btn-primary {
	border-color: #ff7324!important;
}
.text-left {
	text-align: left!important;
}
/* ========================================
   SOBRE NÓS SECTION
   ======================================== */

.sobre {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}
.text-center {
    text-align: center!important;
}
.sobre::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 56, 101, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.sobre::after {
    content: '';
    position: absolute;
    bottom: -5%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(239, 91, 6, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sobre-text {
    padding-left: 2rem;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sobre-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--cor-texto);
    position: relative;
}

.sobre-description p:last-of-type {
    margin-bottom: 0;
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--cor-branco);
    border-radius: 15px;
    box-shadow: var(--sombra);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.stat-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(239, 91, 6, 0.05), transparent);
    transition: all 0.4s ease;
    z-index: -1;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra-hover);
}

.stat-item:hover::before {
    height: 100%;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--cor-secundaria);
    margin-bottom: 0.75rem;
    font-family: var(--fonte-titulo);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to right, var(--cor-secundaria), #ff7324);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--cor-principal);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.sobre-features {
    margin-top: 0;
}

.feature-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--cor-principal);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.feature-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--cor-secundaria);
    border-radius: 3px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cor-secundaria), #ff7324);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-branco);
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(239, 91, 6, 0.25);
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--cor-principal);
    font-weight: 700;
}

.feature-content p {
    font-size: 1rem;
    color: var(--cor-texto);
    line-height: 1.6;
}

.feature-card {
    padding: 2rem 1.5rem;
    background: var(--cor-branco);
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
    overflow: hidden;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.feature-card:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.6s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.8s;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: var(--cor-secundaria);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    background: var(--cor-branco);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px) rotateX(5deg);
}

.feature-card:hover::before {
    transform: scale(10);
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--cor-secundaria), #ff7324);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-branco);
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(239, 91, 6, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-card .feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.3), transparent);
    top: -50%;
    left: -50%;
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.feature-card:hover .feature-icon::after {
    top: 100%;
    left: 100%;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--cor-principal);
    font-weight: 700;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.feature-card:hover h4 {
    color: var(--cor-secundaria);
}

.feature-card h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--cor-secundaria);
    transition: all 0.4s ease;
}

.feature-card:hover h4::after {
    width: 80%;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--cor-texto);
    margin-top: 0.5rem;
}

.sobre-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.piano-image {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.6s ease;
}

.piano-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.sobre-img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.anos-badge {
	position: absolute;
	left: 78%;
	bottom: 28px;
	width: 10rem;
	height: 10rem;
	background: var(--cor-principal);
	color: #fff;
	top: 85%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	animation: pulse 2s infinite;
	/* border: 3px solid var(--cor-secundaria); */
}

.anos-numero {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--cor-secundaria);
}

.anos-texto {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
}

.sobre-media {
    position: relative;
    animation: fadeInUp 1s ease-out 0.4s forwards;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sobre-video-container {
    position: relative;
}

.video-heading,
.gallery-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--cor-principal);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.video-heading::after,
.gallery-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--cor-secundaria);
    border-radius: 3px;
}

.sobre-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.6s ease;
}

.youtube-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    border: 5px solid #fff;
    background-color: #000;
}

.youtube-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                transparent 60%, 
                rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.video-thumbnail img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.8s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: var(--cor-secundaria);
    border: none;
    border-radius: 50%;
    color: var(--cor-branco);
    font-size: 2.2rem;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(239, 91, 6, 0.5);
    z-index: 2;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.play-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--cor-secundaria);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
    transform: scale(1.2);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.4);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

.play-button:hover {
    background: #ff7324;
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 15px 40px rgba(239, 91, 6, 0.6);
}

.play-button i {
    transform: translateX(3px);
}

.sobre-gallery-container {
    margin-top: 2rem;
}

.sobre-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    position: relative;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--sombra);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform-style: preserve-3d;
}

.gallery-item:first-child {
    grid-column: span 2;
    height: 280px;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, 
                rgba(0, 56, 101, 0.6), 
                transparent);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
    transform: scale(1.1);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-overlay span {
    font-weight: 600;
    font-size: 0.9rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ========================================
   CURSOS SECTION
   ======================================== */

.cursos {
    position: relative;
}

.cursos-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--cor-principal);
    background: transparent;
    color: var(--cor-principal);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--cor-principal);
    transition: width 0.3s ease;
    z-index: -1;
}

.filter-btn:hover::before {
    width: 100%;
}

.filter-btn:hover {
    color: var(--cor-branco);
}

.filter-btn.active {
    background: var(--cor-principal);
    color: var(--cor-branco);
    box-shadow: 0 4px 10px rgba(0, 56, 101, 0.2);
    transform: translateY(-2px);
}

.cursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    perspective: 1000px;
}

.curso-card {
    background: var(--cor-branco);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sombra);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform-style: preserve-3d;
    opacity: 1;
    visibility: visible;
}

.curso-card.filtered-out {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
}
.pl-0 {
	padding-left: 0px !important;
}
.curso-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* Mensagem quando não há cursos */
.no-cursos-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
   /*  background: var(--cor-branco); */
    border-radius: 20px;
    /* box-shadow: var(--sombra); */
    margin: 2rem 0;
}

.no-cursos-message i {
    display: block;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
    color: var(--cor-primaria);
}

.no-cursos-message h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--cor-texto);
}

.no-cursos-message p {
    color: var(--cor-texto-secundario);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.curso-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.curso-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.curso-card:hover .curso-image img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.curso-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 56, 101, 0.9), rgba(0, 56, 101, 0.6), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    padding-bottom: 2rem;
    transition: all 0.4s ease;
}

.curso-card:hover .curso-overlay {
    opacity: 1;
}

.curso-content {
    padding: 1.5rem;
    position: relative;
}

.curso-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--cor-principal);
    position: relative;
    display: inline-block;
}

.curso-content h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--cor-secundaria);
    transition: all 0.3s ease;
}

.curso-card:hover .curso-content h3::after {
    width: 100%;
}

.curso-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    color: var(--cor-texto-claro);
}

.curso-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 56, 101, 0.1);
}

.nivel,
.duracao {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(0, 56, 101, 0.05);
    color: var(--cor-principal);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nivel::before {
    content: '\f5fc';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8rem;
}

.duracao::before {
    content: '\f017';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8rem;
}

.curso-card:hover .nivel,
.curso-card:hover .duracao {
    background: rgba(239, 91, 6, 0.1);
    color: var(--cor-secundaria);
}

.cursos-cta {
    text-align: center;
    margin-top: 4rem;
}

.cursos-cta .button-primario {
    padding: 12px 24px;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cursos-cta .button-primario::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.cursos-cta .button-primario:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cursos-cta .button-primario:hover::before {
    left: 100%;
}

/* ========================================
   PROFESSORES SECTION
   ======================================== */

.professores {
    position: relative;
}

.professores-grid {
    margin-bottom: 3rem;
}

/* Garantir que os cards de professores tenham altura uniforme */
.professores-grid.grid-4 .professor-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.professores-grid.grid-4 .professor-card .professor-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.professor-card {
    background: var(--cor-branco);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sombra);
    transition: var(--transicao);
    text-align: center;
}

.professor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sombra-hover);
}

.professor-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.professor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transicao);
}

.professor-card:hover .professor-image img {
    transform: scale(1.05);
}

.professor-content {
    padding: 1.5rem;
}

.professor-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--cor-principal);
}

.professor-specialty {
    color: var(--cor-secundaria);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.professor-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--cor-texto-claro);
    margin-bottom: 1rem;
}

.professor-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.professor-social a {
    width: 35px;
    height: 35px;
    background: var(--cor-fundo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-principal);
    transition: var(--transicao);
}

.professor-social a:hover {
    background: var(--cor-secundaria);
    color: var(--cor-branco);
}

.professores-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ========================================
   DEPOIMENTOS SECTION
   ======================================== */

.depoimentos {
    position: relative;
}

.depoimentos-container {
    margin-bottom: 3rem;
}

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

.depoimento-slide {
    background: var(--cor-branco);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--sombra);
    transition: var(--transicao);
    position: relative;
}

.depoimento-slide::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--cor-secundaria);
    font-family: serif;
    line-height: 1;
}

.depoimento-slide:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-hover);
}

.depoimento-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--cor-texto-claro);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--cor-secundaria);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--cor-principal);
}

.author-role {
    font-size: 0.85rem;
    color: var(--cor-texto-claro);
}

.depoimento-rating {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.depoimento-rating i {
    color: #ffd700;
    font-size: 0.9rem;
}

.depoimentos-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.depoimentos-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--cor-branco);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--sombra);
}

.depoimentos-stats .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cor-secundaria), #ff7324);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-branco);
    font-size: 1.2rem;
}

.depoimentos-stats .stat-content {
    text-align: left;
}

.depoimentos-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--cor-principal);
    margin-bottom: 0.25rem;
}

.depoimentos-stats .stat-label {
    font-size: 0.9rem;
    color: var(--cor-texto-claro);
}

/* Carousel de Depoimentos */
.depoimentos-carousel-container {
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
}

.depoimentos-carousel {
    position: relative;
    border-radius: 20px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 1.33rem); /* 3 slides visíveis */
    margin-right: 2rem;
    box-sizing: border-box;
}

.carousel-slide:last-child {
    margin-right: 0;
}

/* Ajuste do slide de depoimento para o carousel */
.carousel-slide .depoimento-slide {
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.carousel-slide .depoimento-text {
    flex-grow: 1;
}

/* Controles do Carousel */
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--cor-branco);
    border: 2px solid var(--cor-secundaria);
    color: var(--cor-secundaria);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 15;
    position: absolute;
    top: 50%;
}

.carousel-btn:hover {
    background: var(--cor-secundaria);
    color: var(--cor-branco);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 115, 36, 0.3);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn.prev-btn {
    left: -25px;
}

.carousel-btn.next-btn {
    right: -25px;
}

/* Indicadores */
.carousel-indicators {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 115, 36, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .indicator.active,
.carousel-indicators .indicator:hover {
    background: var(--cor-secundaria);
    transform: scale(1.2);
}

/* Responsividade do Carousel */
@media (max-width: 1200px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 1rem); /* 2 slides em tablets grandes */
    }
    
    .carousel-btn.prev-btn {
        left: -20px;
    }
    
    .carousel-btn.next-btn {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 100%; /* 1 slide em móveis */
        margin-right: 0;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-btn.prev-btn {
        left: -15px;
    }
    
    .carousel-btn.next-btn {
        right: -15px;
    }
    
    .carousel-slide .depoimento-slide {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .carousel-btn.prev-btn {
        left: 10px;
    }
    
    .carousel-btn.next-btn {
        right: 10px;
    }
    
    .carousel-controls {
        bottom: -60px;
        top: auto;
        transform: none;
        justify-content: center;
        gap: 2rem;
    }
}

/* ========================================
   VALORES SECTION
   ======================================== */

.valores {
    position: relative;
}

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

.plano-card {
    background: var(--cor-branco);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sombra);
    transition: var(--transicao);
    position: relative;
    margin: 0 0.7rem;
}

.plano-card.featured {
    transform: scale(1.05);
}

.plano-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sombra-hover);
}

.plano-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plano-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--cor-secundaria);
    color: var(--cor-branco);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plano-header {
    background: linear-gradient(135deg, var(--cor-principal), var(--cor-terciaria));
    color: var(--cor-branco);
    padding: 2rem;
    text-align: center;
}

.plano-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--cor-branco);
}

.plano-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.period {
    font-size: 1rem;
    opacity: 0.8;
}

.plano-content {
    padding: 2rem;
}

.plano-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plano-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--cor-texto-claro);
}

.plano-features i {
    color: var(--cor-secundaria);
    font-size: 0.8rem;
}

.plano-content .btn {
    width: 100%;
    justify-content: center;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--cor-branco);
    border-radius: 15px;
    box-shadow: var(--sombra);
}

.info-item i {
    color: var(--cor-secundaria);
    font-size: 1.5rem;
}

.info-item p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ========================================
   CONTATO SECTION
   ======================================== */

.contato {
    position: relative;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contato-form {
    background: var(--cor-branco);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--sombra);
    position: relative;
    z-index: 1;
}

.contato-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--cor-secundaria), var(--cor-principal));
    border-radius: 20px 20px 0 0;
    z-index: -1;
}

.form-message {
    margin-bottom: 2rem;
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
}

.form-message i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.alert-success {
    background-color: rgba(25, 135, 84, 0.1);
    border: 1px solid rgba(25, 135, 84, 0.2);
    color: #0f5132;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #842029;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--cor-principal);
    transition: all 0.3s ease;
}

.form-group.focused .form-label {
    color: var(--cor-secundaria);
}

.field-error {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
}

.field-error:before {
    content: '\f071';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    font-size: 0.75rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--cor-cinza);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: var(--fonte-principal);
    background-color: var(--cor-branco);
}

.form-group.focused .form-control {
    border-color: var(--cor-secundaria);
    box-shadow: 0 0 0 3px rgba(239, 91, 6, 0.1);
}

.form-control:focus {
    outline: none;
    border-color: var(--cor-secundaria);
    box-shadow: 0 0 0 3px rgba(239, 91, 6, 0.1);
}

.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-control.is-valid {
    border-color: #198754;
    box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.1);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: calc(1.5em + 0.75rem);
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--cor-branco);
    border-radius: 15px;
    box-shadow: var(--sombra);
    transition: var(--transicao);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-hover);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cor-secundaria), #ff7324);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-branco);
    font-size: 1.2rem;
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--cor-principal);
}

.info-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--cor-texto-claro);
}

.info-content a {
    color: #003560;
    text-decoration: none;
    transition: var(--transicao);
}

.info-content a:hover {
    color: var(--cor-principal);
}

.contato-map {
    margin-top: 3rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sombra);
}

/* Estilos adicionais para o formulário de contato */
.form-message {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.message-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.message-content {
    flex-grow: 1;
}

.form-loading .form-control {
    background-color: #f9f9f9;
    cursor: not-allowed;
}

.form-privacy-notice {
    margin-top: 1rem;
    text-align: center;
    color: var(--cor-texto-claro);
}

.form-privacy-notice i {
    color: var(--cor-secundaria);
    margin-right: 5px;
}

/* Animações para o formulário */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shakeX {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.animate__animated {
    animation-duration: 0.8s;
}

.animate__fadeIn {
    animation-name: fadeIn;
}

.animate__shakeX {
    animation-name: shakeX;
}

/* Estilo para página de contato específico */
.contato-page {
    padding: 4rem 0;
}

.contato-page .contato-content {
    margin-bottom: 0;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

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

@media (max-width: 1024px) {
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .sobre-text {
        padding-left: 0;
        order: 1;
    }
    
    .sobre-media {
        max-width: 600px;
        margin: 0 auto;
        order: 0;
    }
    
    .piano-image {
        transform: none;
    }
    
    .anos-badge {
        width: 100px;
        height: 100px;
        right: 20px;
        bottom: 20px;
    }
    
    .anos-numero {
        font-size: 2.5rem;
    }
    
    .anos-texto {
        font-size: 0.7rem;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .depoimentos-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .feature-item {
        margin-bottom: 1.2rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .anos-badge {
        width: 80px;
        height: 80px;
        right: 15px;
        bottom: 15px;
    }
    
    .anos-numero {
        font-size: 2rem;
    }
    
    .anos-texto {
        font-size: 0.6rem;
    }
    
    .sobre-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:first-child {
        grid-column: span 1;
        height: 200px;
    }
    
    .cursos-filter {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .cursos-grid {
        grid-template-columns: 1fr;
    }
    
    .depoimentos-slider {
        grid-template-columns: 1fr;
    }
    
    .depoimentos-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .depoimentos-stats .stat-item {
        justify-content: center;
        text-align: center;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
    }
    
    .plano-card.featured {
        transform: none;
    }
    
    .plano-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .valores-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .sobre-stats {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .depoimento-slide {
        padding: 1.5rem;
    }
    
    .plano-header {
        padding: 1.5rem;
    }
    
    .plano-content {
        padding: 1.5rem;
    }
    
    .contato-form {
        padding: 1.5rem;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

/* ========================================
   LOADING STATES
   ======================================== */

.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid var(--cor-cinza);
    border-top: 3px solid var(--cor-secundaria);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Intersection Observer animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Melhorias nas animações AOS */
[data-aos] {
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1.0) !important;
}

/* Ajuste de velocidade por tipo de animação */
[data-aos="fade-up"] {
    transform: translate3d(0, 30px, 0);
}

[data-aos="fade-down"] {
    transform: translate3d(0, -30px, 0);
}

[data-aos="fade-right"] {
    transform: translate3d(-30px, 0, 0);
}

[data-aos="fade-left"] {
    transform: translate3d(30px, 0, 0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

/* Garantir que elementos aninhados com diferentes atrasos funcionem bem */
[data-aos-delay="100"] {
    transition-delay: 100ms !important;
}

[data-aos-delay="200"] {
    transition-delay: 200ms !important;
}

[data-aos-delay="300"] {
    transition-delay: 300ms !important;
}

[data-aos-delay="400"] {
    transition-delay: 400ms !important;
}

[data-aos-delay="500"] {
    transition-delay: 500ms !important;
}

/* Reduz ou desativa animações para usuários que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {
    [data-aos] {
        transition-duration: 0.1s !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .btn {
        display: none !important;
    }
    
    .contato-form {
        display: none !important;
    }
    
    .map-container {
        display: none !important;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .card,
    .feature-card,
    .info-card,
    .plano-card {
        border: 2px solid var(--cor-principal);
    }
    
    .btn {
        border: 2px solid currentColor;
    }
}

/* Focus styles */
.form-control:focus,
.filter-btn:focus,
.btn:focus {
    outline: 2px solid var(--cor-secundaria);
    outline-offset: 2px;
}

/* ========================================
   EVENTOS SECTION
   ======================================== */

.eventos {
    background: var(--cor-branco);
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Exatamente 3 colunas */
    grid-template-rows: repeat(2, auto);   /* 2 linhas para 6 cards */
    gap: 2rem;
    margin-bottom: 4rem;
    grid-auto-flow: row;                   /* Garante que preenchimento seja por linha */
    width: 100%;
}

.evento-card {
    background: var(--cor-branco);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sombra);
    transition: var(--transicao);
    position: relative;
    height: 100%;         /* Garante mesma altura para todos os cards */
    display: flex;        /* Usa flexbox para estruturar o conteúdo interno */
    flex-direction: column; /* Organiza conteúdo verticalmente */
}
.btn {
	display: inline-block;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	background-color: #ff7324 !important;
	border: 1px solid #ff7324 !important;
	padding: .375rem .75rem;
	font-size: 1rem;
	border-radius: 2.25rem;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.evento-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sombra-hover);
}

.evento-card.featured {
    border: 2px solid var(--cor-primaria);
}

.evento-card.featured::before {
    content: "Destaque";
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--cor-primaria);
    color: var(--cor-branco);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.evento-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--cor-principal);
    color: var(--cor-branco);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    z-index: 1;
}

.date-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.evento-content {
    padding: 4rem 2rem 2rem;
}

.evento-category {
    display: inline-block;
    background: var(--cor-primaria);
    color: var(--cor-branco);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.evento-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--cor-texto);
}

.evento-content p {
    color: var(--cor-texto-claro);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.evento-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.evento-time,
.evento-location,
.evento-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cor-texto-claro);
    font-size: 0.9rem;
}

.evento-time i,
.evento-location i,
.evento-price i {
    color: var(--cor-primaria);
}

.evento-price span {
    font-weight: 600;
    color: var(--cor-secundaria);
}

/* Newsletter Section */
.eventos-newsletter {
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: var(--cor-branco);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-subscribe input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: var(--cor-branco);
    color: var(--cor-texto);
}

.newsletter-subscribe input::placeholder {
    color: var(--cor-texto-claro);
}

.newsletter-subscribe .btn {
    padding: 1rem 1.5rem;
    white-space: nowrap;
}

/* Responsividade */
@media (max-width: 992px) {
    .eventos-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto); /* 3 linhas para 6 cards em 2 colunas */
    }
}

@media (max-width: 768px) {
    .eventos-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto); /* 6 linhas para 6 cards em 1 coluna */
    }
    
    .evento-content {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .evento-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .eventos-newsletter {
        padding: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-subscribe input {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .evento-date {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 1rem;
        width: fit-content;
    }
    
    .evento-content {
        padding: 2rem 1rem 1rem;
    }
    
    .newsletter-content h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
    }
}

/* ========================================
   NOTIFICAÇÕES
   ======================================== */

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--cor-branco);
    border-radius: 10px;
    box-shadow: var(--sombra-hover);
    z-index: 9999;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 400px;
    border-left: 4px solid var(--cor-primaria);
}

.notification.notification-success {
    border-left-color: #10b981;
}

.notification.notification-error {
    border-left-color: #ef4444;
}

.notification.notification-warning {
    border-left-color: #f59e0b;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-message {
    flex: 1;
    font-size: 0.9rem;
    color: var(--cor-texto);
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--cor-texto-claro);
    transition: color 0.2s ease;
}

.notification-close:hover {
    color: var(--cor-texto);
}

@media (max-width: 480px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
