/* ===================================================
   TANGO PAGE — Experiências de Tango
   =================================================== */

/* ---------- UTILITY ---------- */
.tango-gradient-text {
    background: linear-gradient(135deg, #9029b0 0%, #f94291 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.glass-panel {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* ---------- HERO ---------- */
.tango-hero {
    position: relative;
    min-height: 870px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.tango-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.tango-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tango-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.80), rgba(0,0,0,0.40), transparent);
}
.tango-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}
.tango-hero-inner {
    max-width: 640px;
}
.tango-hero-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 9999px;
    background: #ac47cc;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.tango-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}
.tango-hero-desc {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    font-weight: 500;
    max-width: 520px;
    margin-bottom: 40px;
}
.tango-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.tango-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #9029b0;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(144,41,176,0.2);
}
.tango-btn-primary:hover {
    background: #ac47cc;
    transform: translateY(-2px);
}
.tango-btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}
.tango-btn-glass:hover {
    background: rgba(255,255,255,0.18);
    color: #fff;
}

/* ---------- FILTER CHIPS ---------- */
.tango-filters {
    padding: 24px 0;
    background: #f3f3f4;
    border-bottom: 1px solid rgba(190,200,207,0.1);
}
.tango-filters-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.tango-filters-inner::-webkit-scrollbar { display: none; }
.tango-chip {
    padding: 8px 24px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    background: #e2e2e2;
    color: #3f484e;
}
.tango-chip:hover {
    background: rgba(144,41,176,0.1);
}
.tango-chip.active {
    background: #9029b0;
    color: #fff;
    font-weight: 700;
}

/* ---------- BENTO GRID ---------- */
.tango-bento {
    padding: 96px 32px;
    max-width: 1280px;
    margin: 0 auto;
}
.tango-bento-header {
    margin-bottom: 64px;
}
.tango-bento-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #006385;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.tango-bento-line {
    height: 6px;
    width: 96px;
    background: linear-gradient(to right, #9029b0, #ec4899);
    border-radius: 9999px;
}
.tango-bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 768px) {
    .tango-bento-grid {
        grid-template-columns: repeat(12, 1fr);
    }
}
.tango-card-main {
    grid-column: span 1;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 500px;
}
@media (min-width: 768px) {
    .tango-card-main { grid-column: span 8; }
}
.tango-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}
.tango-card-main:hover img { transform: scale(1.1); }
.tango-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2), transparent);
}
.tango-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px;
    width: 100%;
}
.tango-card-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.tango-badge-sale {
    padding: 4px 12px;
    background: #f59e0b;
    color: #271900;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    border-radius: 6px;
}
.tango-badge-rating {
    display: flex;
    align-items: center;
    color: #fbbf24;
    font-size: 14px;
}
.tango-badge-rating .material-symbols-outlined {
    font-size: 14px;
    font-variation-settings: 'FILL' 1;
    margin-right: 4px;
}
.tango-card-main .tango-card-title {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}
.tango-card-main .tango-card-desc {
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    margin-bottom: 24px;
    line-height: 1.6;
}
.tango-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tango-card-price {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}
.tango-card-price span {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
}
.tango-card-book {
    padding: 12px 24px;
    background: #fff;
    color: #006385;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}
.tango-card-book:hover {
    background: #9029b0;
    color: #fff;
}

/* Side card */
.tango-card-side {
    grid-column: span 1;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 500px;
}
@media (min-width: 768px) {
    .tango-card-side { grid-column: span 4; }
}
.tango-card-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}
.tango-card-side:hover img { transform: scale(1.1); }
.tango-card-side .tango-card-body { padding: 32px; }
.tango-card-side .tango-card-cat {
    color: #f472b6;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    display: block;
}
.tango-card-side .tango-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.tango-card-side .tango-card-desc {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}
.tango-card-explore {
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    transition: gap 0.3s;
}
.tango-card-side:hover .tango-card-explore { gap: 16px; }

/* ---------- WORKSHOPS / LESSONS ---------- */
.tango-workshops {
    padding: 96px 0;
    background: #e8e8e8;
}
.tango-workshops-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}
.tango-workshops-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 64px;
}
@media (min-width: 768px) {
    .tango-workshops-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}
.tango-workshops-header-text { max-width: 560px; }
.tango-workshops-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #1a1c1c;
    line-height: 1.2;
    margin-bottom: 16px;
}
.tango-workshops-title .accent { color: #9029b0; }
.tango-workshops-subtitle {
    color: #3f484e;
    line-height: 1.7;
}
.tango-workshops-link {
    color: #9029b0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
}
.tango-lessons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 768px) {
    .tango-lessons-grid { grid-template-columns: repeat(3, 1fr); }
}
.tango-lesson-card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border-top: 4px solid #9029b0;
    transition: box-shadow 0.3s;
}
.tango-lesson-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.tango-lesson-card.pink { border-top-color: #ec4899; }
.tango-lesson-card.blue { border-top-color: #0284c7; }
.tango-lesson-card .material-symbols-outlined {
    font-size: 36px;
    margin-bottom: 24px;
}
.tango-lesson-card .icon-tertiary { color: #9029b0; }
.tango-lesson-card .icon-pink { color: #ec4899; }
.tango-lesson-card .icon-blue { color: #0284c7; }
.tango-lesson-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1c1c;
}
.tango-lesson-desc {
    font-size: 14px;
    color: #3f484e;
    line-height: 1.7;
    margin-bottom: 24px;
}
.tango-lesson-footer {
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tango-lesson-price {
    font-weight: 700;
    font-size: 18px;
    color: #1a1c1c;
}
.tango-lesson-book {
    color: #006385;
    font-weight: 700;
    font-size: 14px;
    background: none;
    border: none;
    cursor: pointer;
}

/* ---------- TESTIMONIAL (ASYMMETRIC) ---------- */
.tango-testimonial {
    padding: 96px 32px;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
}
.tango-testimonial-layout {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
}
@media (min-width: 768px) {
    .tango-testimonial-layout {
        flex-direction: row;
    }
}
.tango-testimonial-img-wrap {
    width: 100%;
    position: relative;
}
@media (min-width: 768px) {
    .tango-testimonial-img-wrap { width: 50%; }
}
.tango-testimonial-blob {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: #fce7f3;
    border-radius: 50%;
    z-index: 0;
}
.tango-testimonial-img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    transform: rotate(3deg);
}
.tango-testimonial-content {
    width: 100%;
}
@media (min-width: 768px) {
    .tango-testimonial-content { width: 50%; }
}
.tango-testimonial-quote-icon {
    font-size: 64px;
    color: rgba(144,41,176,0.2);
    font-variation-settings: 'FILL' 1;
    margin-bottom: 24px;
    display: block;
}
.tango-testimonial-quote {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #1a1c1c;
    font-style: italic;
    line-height: 1.35;
    margin-bottom: 32px;
}
.tango-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.tango-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #e2e2e2;
}
.tango-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tango-testimonial-name {
    font-weight: 700;
    color: #1a1c1c;
}
.tango-testimonial-date {
    font-size: 14px;
    color: #3f484e;
}

/* ---------- NEWSLETTER / CTA ---------- */
.tango-newsletter {
    padding: 80px 32px;
    background: #006385;
    color: #fff;
}
.tango-newsletter-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.tango-newsletter-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
}
.tango-newsletter-desc {
    font-size: 18px;
    color: #c3e8ff;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}
.tango-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}
@media (min-width: 640px) {
    .tango-newsletter-form { flex-direction: row; }
}
.tango-newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}
.tango-newsletter-input::placeholder { color: rgba(255,255,255,0.6); }
.tango-newsletter-input:focus { border-color: #9029b0; }
.tango-newsletter-btn {
    padding: 16px 32px;
    background: #ac47cc;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s;
    white-space: nowrap;
}
.tango-newsletter-btn:hover { background: #fff; color: #006385; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
    .tango-hero { min-height: 600px; }
    .tango-hero-title { font-size: 52px; }
    .tango-hero-desc { font-size: 17px; }
    .tango-bento { padding: 64px 24px; }
    .tango-bento-title { font-size: 30px; }
    .tango-card-main, .tango-card-side { height: 400px; }
    .tango-workshops-title { font-size: 30px; }
    .tango-testimonial-quote { font-size: 24px; }
    .tango-newsletter-title { font-size: 30px; }
}

@media (max-width: 767px) {
    .tango-hero { min-height: auto; padding: 100px 0 60px; }
    .tango-hero-title { font-size: 36px; }
    .tango-hero-desc { font-size: 16px; }
    .tango-hero-actions { flex-direction: column; }
    .tango-btn-primary, .tango-btn-glass { width: 100%; justify-content: center; }
    .tango-bento { padding: 48px 16px; }
    .tango-card-main, .tango-card-side { height: 350px; }
    .tango-card-main .tango-card-title { font-size: 22px; }
    .tango-card-body { padding: 24px; }
    .tango-card-footer { flex-direction: column; gap: 16px; align-items: flex-start; }
    .tango-testimonial { padding: 64px 16px; }
    .tango-testimonial-img { transform: rotate(0deg); }
    .tango-newsletter { padding: 64px 16px; }
    .tango-newsletter-title { font-size: 26px; }
}
