:root {
    --primary-dark: hsl(358, 87%, 9%);
    --primary-red: hsl(352, 39%, 51%);
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f5f5f5;
    --gray-dark: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: var(--primary-dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* HERO SECTION - REDUZIDO */

.hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--black) 100%);
    overflow: hidden;
    padding: 80px 30px;
    gap: 40px;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
}

.hero-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, var(--primary-red) 0%, rgba(219, 86, 110, 0.2) 70%, transparent 100%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(20px);
}

.profile-image {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-red);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(219, 86, 110, 0.5), 0 15px 40px rgba(219, 86, 110, 0.3);
    animation: slideInLeft 0.8s ease-out;
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.02);
}

.hero-text {
    text-align: center;
    animation: slideInRight 0.8s ease-out;
}

h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--primary-red);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.subtitle-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.subtitle-btn {
    padding: 10px 22px;
    border: 2px solid var(--primary-red);
    background: transparent;
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subtitle-btn:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: scale(1.05);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 44px;
    border: 2px solid var(--primary-red);
    border-radius: 25px;
    opacity: 0.6;
    z-index: 2;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0.3;
    }
}

/* Section Styling */
section {
    padding: 2rem 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 0.05em;
    color: var(--white);
}

.section-title span {
    color: var(--primary-red);
}


/* About Section */
.about {
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center 10%;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
    animation: slideBackground 20s infinite;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 2px;
    border-left: 3px solid var(--primary-red);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.about-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
}

.about-card h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.about-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-light);
}

.paragrafo-destaque {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
    color: var(--primary-red);
    font-size: 1.4rem;
    margin: 50px auto;
    max-width: 900px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* EP Section */
.ep-section {
    background: linear-gradient(135deg, var(--gray-dark) 0%, rgba(51, 51, 51, 0.8) 50%, var(--gray-dark) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.ep-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(200, 200, 210, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ep-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-red), transparent 70%);
    opacity: 0.08;
    border-radius: 50%;
    pointer-events: none;
}

.ep-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.ep-info h3 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
    font-weight: 300;
    font-style: italic;
}

.ep-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--gray-light);
}

.tracklist {
    margin-top: 3rem;
}

.tracklist h4 {
    color: var(--primary-red);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.track {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.track:hover {
    padding-left: 1rem;
    border-left: 3px solid var(--primary-red);
}

.track-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
}

.track-credits {
    font-size: 0.9rem;
    color: var(--gray-light);
    margin-top: 0.3rem;
}

.track-platforms {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.8rem;
    flex-wrap: wrap;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.platform-link:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

.platform-icon {
    width: 16px;
    height: 16px;
}

/* Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 80px rgba(219, 86, 110, 0.15),
        0 0 40px rgba(219, 86, 110, 0.2);
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    background: var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-red) 50%, var(--primary-dark) 100%);
}

.placeholder-text {
    color: var(--gray-light);
    font-size: 1.2rem;
    text-align: center;
    padding: 2rem;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--primary-red);
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-red);
    transform: scale(1.2);
}

/* Highlights Section */
.highlights {
    background: linear-gradient(135deg, var(--gray-dark) 0%, rgba(51, 51, 51, 0.9) 50%, var(--gray-dark) 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.highlights::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(200, 200, 210, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.highlights::after {
    content: '';
    position: absolute;
    bottom: -25%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-red), transparent 70%);
    opacity: 0.06;
    border-radius: 50%;
    pointer-events: none;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 2px;
    border-top: 3px solid var(--primary-red);
    transition: all 0.4s ease;
    text-align: center;
    cursor: pointer;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    perspective: 1000px;
}

.highlight-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.highlight-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.highlight-card.flipped .highlight-card-inner {
    transform: rotateY(180deg);
}

.highlight-card-front,
.highlight-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.highlight-card-back {
    transform: rotateY(180deg);
}

.highlight-content {
    display: flex;
    flex-direction: column;
    gap: 1.0;
}

.highlight-card h3 {
    color: var(--primary-red);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.highlight-card p {
    color: var(--white);
    line-height: 1.7;
    font-size: 1.0rem;
}

.highlight-image-area {
    width: 100%;
    height: 200px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-image-area img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-red) 50%, var(--primary-dark) 100%);
}

.highlight-click-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--primary-red);
    font-weight: 500;
}

.click-icon {
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.click-icon::after {
    content: '+';
    font-size: 1rem;
    font-weight: bold;
}

.highlight-card.flipped .highlight-click-indicator {
    display: none;
}

.highlight-back-button {
    display: none;
    margin-top: 1rem;
}

.highlight-card.flipped .highlight-back-button {
    display: flex;
}

.back-btn {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: center;
}

.back-btn:hover {
    background: rgba(220, 50, 50, 0.8);
    transform: translateY(-2px);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(220, 50, 50, 0.7);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(220, 50, 50, 0);
    }
}

/* Production Credits */
.production-credits {
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(60, 60, 65, 0.4) 0%, rgba(40, 40, 45, 0.2) 100%);
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-red);
}

.production-credits h4 {
    color: var(--primary-red);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.credit-item {
    background: linear-gradient(135deg, rgba(200, 200, 210, 0.08) 0%, rgba(220, 50, 50, 0.05) 100%);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 50, 50, 0.15);
}

.credit-item:hover {
    background: linear-gradient(135deg, rgba(200, 200, 210, 0.15) 0%, rgba(220, 50, 50, 0.1) 100%);
    transform: translateX(5px);
    border-color: rgba(220, 50, 50, 0.3);
    box-shadow: 0 4px 12px rgba(220, 50, 50, 0.1);
}

.credit-btn {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    cursor: default;
}

.credit-name {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.credit-role {
    color: var(--gray-light);
    font-size: 0.85rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--black) 0%, rgba(0, 0, 0, 0.8) 50%, var(--black) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 6rem 0;
}

.contact::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-red), transparent 70%);
    opacity: 0.25;
    border-radius: 50%;
    pointer-events: none;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--primary-red), transparent 70%);
    opacity: 0.18;
    border-radius: 50%;
    pointer-events: none;
}

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

.contact h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.contact p {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-red);
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    transition: all 0.4s ease;
    border: 2px solid var(--primary-red);
    text-transform: uppercase;
}

.cta-button:hover {
    background: transparent;
    transform: scale(1.05);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px !important;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.social-btn:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

/* FOOTER - COMPACTO */
footer {
    background: var(--primary-dark);
    padding: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ============== MEDIA QUERIES ============== */

/* Desktop Grande (1025px+) - Sem alterações necessárias, usa os padrões */

/* Tablet Grande (769px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-content {
        gap: 30px;
    }

    .ep-content {
        gap: 3rem;
    }

    .highlights-grid {
        gap: 1.5rem;
    }
}

/* Tablet Pequeno (601px - 768px) */
@media (max-width: 768px) {
    .hero {
        padding: 100px 40px;
        height: auto;
        min-height: 80vh;
        background-attachment: scroll;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .profile-image {
        width: 200px;
        height: 200px;
    }

    .hero-image-container::before {
        width: 220px;
        height: 220px;
    }

    .hero-text {
        order: -1;
    }

    .scroll-indicator {
        display: none;
    }

    .about {
        padding: 4rem 0;
    }

    .about-background {
        background-size: contain;
        background-position: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .about-card {
        padding: 2rem;
        border-left: 3px solid var(--primary-red);
    }

    .about-card h3 {
        font-size: 1.3rem;
    }

    .about-card p {
        font-size: 1rem;
    }

    .paragrafo-destaque {
        font-size: 1.1rem;
        margin: 30px auto;
        padding: 0 1rem;
        letter-spacing: 0.3px;
    }

    .ep-content {
        grid-template-columns: 1fr;
    }

    .carousel {
        height: 400px;
    }

    section {
        padding: 4rem 0;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .contact-section>p:first-of-type,
    .contact-btn,
    .contact-section>p:nth-of-type(2) {
        display: block !important;
        text-align: center;
        margin: 15px auto !important;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Celulares Grandes (481px - 600px) */
@media (max-width: 600px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        height: auto;
        min-height: 70vh;
        padding: 80px 24px;
    }

    .hero-image-container::before {
        width: 200px;
        height: 200px;
    }

    .profile-image {
        width: 180px;
        height: 180px;
    }

    .about {
        padding: 3rem 0;
    }

    .about-background {
        background-size: 200px;
        opacity: 0.05 !important;
    }

    .about-grid {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .about-card {
        padding: 1.5rem;
        border-left: 3px solid var(--primary-red);
    }

    .about-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .about-card p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .paragrafo-destaque {
        font-size: 1rem;
        margin: 20px auto;
        padding: 0 1rem;
        line-height: 1.5;
    }

    .section-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }

    .ep-section {
        padding: 4rem 0;
    }

    .ep-content {
        gap: 2rem;
    }

    .ep-info h3 {
        font-size: 1.8rem;
    }

    .carousel-container {
        max-width: 100%;
        position: relative;
    }

    .carousel {
        height: 300px;
        position: relative;
    }

    .carousel-container {
        max-width: 100%;
    }

    .carousel {
        height: 280px;
    }

    .carousel-nav {
        position: absolute;
        top: 35%;
        transform: translateY(-50%);
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        z-index: 10;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .highlight-card {
        min-height: 300px;
    }

    .highlight-card h3 {
        font-size: 1.1rem;
    }

    .highlight-card p {
        font-size: 0.95rem;
    }

    .highlight-image-area {
        height: 180px;
    }

    .credits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .production-credits {
        padding: 1.5rem;
    }

    section {
        padding: 3rem 0;
    }
}

/* Celulares Pequenos (411px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        height: auto;
        min-height: 70vh;
        padding: 70px 20px;
        gap: 20px;
    }

    .hero-content {
        gap: 20px;
    }

    .hero-image-container::before {
        width: 170px;
        height: 170px;
    }

    .profile-image {
        width: 155px;
        height: 155px;
        border: 2px solid var(--primary-red);
    }

    h1 {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 8px;
    }

    .subtitle {
        font-size: clamp(0.8rem, 2.2vw, 1.1rem);
        letter-spacing: 2px;
    }

    .subtitle-buttons {
        gap: 8px;
        margin-top: 12px;
    }

    .subtitle-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .about {
        padding: 2.5rem 0;
    }

    .about-card {
        padding: 1.3rem;
        border-left: 2px solid var(--primary-red);
    }

    .about-card h3 {
        font-size: 1rem;
        margin-bottom: 0.7rem;
    }

    .about-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .paragrafo-destaque {
        font-size: 0.95rem;
        margin: 15px auto;
        padding: 0 0.8rem;
        line-height: 1.5;
    }

    .section-title {
        font-size: clamp(1.3rem, 3.5vw, 2rem);
    }

    .ep-section {
        padding: 3rem 0;
    }

    .ep-info h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .ep-info p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .tracklist {
        margin-top: 2rem;
    }

    .tracklist h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .track {
        padding: 0.8rem 0;
    }

    .track-name {
        font-size: 0.95rem;
    }

    .track-credits {
        font-size: 0.8rem;
    }

    .track-platforms {
        gap: 0.6rem;
    }

    .platform-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }

    .carousel {
        height: 280px;
    }

    .carousel-nav {
        position: absolute;
        top: 35%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        z-index: 10;
    }

    .carousel-dots {
        gap: 0.6rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .highlights {
        padding: 2.5rem 0;
    }

    .highlights-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .highlight-card {
        min-height: 280px;
        padding: 1.3rem;
        border-top: 2px solid var(--primary-red);
    }

    .highlight-card h3 {
        font-size: 1rem;
        margin-bottom: 0.7rem;
    }

    .highlight-card p {
        font-size: 0.9rem;
    }

    .highlight-image-area {
        height: 150px;
        margin-top: 0.8rem;
    }

    .highlight-click-indicator {
        font-size: 0.7rem;
        margin-top: 0.7rem;
    }

    .click-icon {
        width: 15px;
        height: 15px;
    }

    .back-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .production-credits {
        margin-top: 1.5rem;
        padding: 1.2rem;
    }

    .production-credits h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .credits-grid {
        gap: 0.8rem;
    }

    .credit-btn {
        padding: 0.7rem;
    }

    .credit-name {
        font-size: 0.9rem;
    }

    .credit-role {
        font-size: 0.75rem;
    }

    .contact {
        padding: 2.5rem 0;
    }

    .contact h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .contact p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.85rem;
    }

    .social-links {
        gap: 8px;
        margin-top: 20px !important;
    }

    .social-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
        width: 100%;
    }

    footer {
        padding: 15px 1rem;
        font-size: 0.75rem;
    }
}

/* iPhone 15 e Celulares Compactos (até 390px) */
@media (max-width: 390px) {
    .container {
        padding: 0 0.8rem;
    }

    .hero {
        height: auto;
        min-height: 65vh;
        padding: 60px 16px;
        gap: 15px;
    }

    .hero-content {
        gap: 15px;
    }

    .hero-image-container::before {
        width: 150px;
        height: 150px;
    }

    .profile-image {
        width: 140px;
        height: 140px;
        border: 2px solid var(--primary-red);
        box-shadow: 0 0 20px rgba(219, 86, 110, 0.4), 0 10px 30px rgba(219, 86, 110, 0.2);
    }

    h1 {
        font-size: clamp(1.8rem, 5.5vw, 2.3rem);
        letter-spacing: -1px;
        margin-bottom: 6px;
    }

    .subtitle {
        font-size: clamp(0.7rem, 1.8vw, 0.95rem);
        letter-spacing: 1.5px;
    }

    .subtitle-buttons {
        gap: 6px;
        margin-top: 10px;
    }

    .subtitle-btn {
        padding: 6px 14px;
        font-size: 0.7rem;
        letter-spacing: 0.8px;
    }

    .scroll-indicator {
        display: none;
    }

    .about {
        padding: 2rem 0;
    }

    .about-grid {
        gap: 1.2rem;
        margin-top: 1.2rem;
    }

    .about-card {
        padding: 1.2rem;
        border-left: 2px solid var(--primary-red);
    }

    .about-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .about-card p {
        font-size: 0.85rem;
        line-height: 1.55;
    }

    .paragrafo-destaque {
        font-size: 0.9rem;
        margin: 15px auto;
        padding: 0 0.5rem;
        line-height: 1.45;
    }

    .section-title {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
    }

    .ep-section {
        padding: 2.5rem 0;
    }

    .ep-content {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .ep-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .ep-info p {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .tracklist {
        margin-top: 1.5rem;
    }

    .tracklist h4 {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .track {
        padding: 0.7rem 0;
    }

    .track-name {
        font-size: 0.9rem;
    }

    .track-credits {
        font-size: 0.75rem;
    }

    .track-platforms {
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .platform-link {
        padding: 0.35rem 0.7rem;
        font-size: 0.65rem;
    }

    .carousel {
        height: 250px;
    }

    .carousel-nav {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        z-index: 9999;
    }

    .carousel-dots {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .dot {
        width: 9px;
        height: 9px;
    }

    .highlights {
        padding: 2rem 0;
    }

    .highlights-grid {
        gap: 0.8rem;
        margin-top: 1.2rem;
    }

    .highlight-card {
        min-height: 260px;
        padding: 1.2rem;
        border-top: 2px solid var(--primary-red);
    }

    .highlight-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .highlight-card p {
        font-size: 0.85rem;
    }

    .highlight-image-area {
        height: 130px;
        margin-top: 0.6rem;
    }

    .highlight-click-indicator {
        font-size: 0.65rem;
        margin-top: 0.6rem;
    }

    .click-icon {
        width: 14px;
        height: 14px;
    }

    .back-btn {
        padding: 0.5rem 0.9rem;
        font-size: 0.75rem;
    }

    .production-credits {
        margin-top: 1.2rem;
        padding: 1rem;
    }

    .production-credits h4 {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .credits-grid {
        gap: 0.6rem;
    }

    .credit-btn {
        padding: 0.6rem;
    }

    .credit-name {
        font-size: 0.85rem;
    }

    .credit-role {
        font-size: 0.7rem;
    }

    .contact {
        padding: 2rem 0;
    }

    .contact h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .contact p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
    }

    .social-links {
        gap: 6px;
        margin-top: 15px !important;
    }

    .social-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
        width: 100%;
        gap: 5px;
    }

    footer {
        padding: 12px 0.8rem;
        font-size: 0.7rem;
    }
}