video.video-player {
    all: initial !important;
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
}

video.video-player:focus {
    outline: auto !important;
}

:root {
    --primary-color: #4e73df;
    --secondary-color: #1cc88a;
    --accent-color: #f6c23e;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fc;
    --transition-speed: 0.3s;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    /* Variáveis para modo claro/escuro */
    --text-primary: #1a1a2e;
    --text-secondary: #666;
    --bg-primary: #f8f9fc;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1f2f6;
    --card-bg: #ffffff;
    --border-color: #eeeeee;
}

body.dark_theme {
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --bg-primary: #121212;
    --bg-secondary: #1e1e1e;
    --bg-tertiary: #2d2d2d;
    --card-bg: #2d2d2d;
    --border-color: #444444;
}

/* Estilos para o header de podcasts */
#header07-1z {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    overflow: hidden;
}

#features015-20 {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
}

#features015-20 .section-title h2 {
    color: var(--text-primary);
}

#features015-20 .section-title p {
    color: var(--text-secondary);
}

#features015-20 .icons-item {
    background-color: var(--card-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#features015-20 .card-title {
    color: var(--text-primary);
}

#features015-20 .card-text {
    color: var(--text-secondary);
}

#recent-episodes {
    padding: 5rem 0;
    background-color: var(--bg-secondary);
}

#recent-episodes .section-title h2 {
    color: var(--text-primary);
}

#recent-episodes .episode-card {
    background-color: var(--card-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#recent-episodes .episode-title {
    color: var(--text-primary);
}

#recent-episodes .episode-description {
    color: var(--text-secondary);
}

#recent-episodes .episode-meta {
    border-top: 1px solid var(--border-color);
}

#recent-episodes .episode-date {
    color: var(--text-secondary);
}

/* Seção de plataformas - ajustes para modo escuro */
#platforms {
    padding: 4rem 0;
    background-color: var(--bg-tertiary);
}

#platforms .section-title h2 {
    color: var(--text-primary);
}

#platforms .section-title p {
    color: var(--text-secondary);
}

#platforms .platform-name {
    color: var(--text-primary);
}

/* Restante do CSS permanece o mesmo, pois já usa as variáveis definidas */
#header07-1z .container-fluid {
    position: relative;
    z-index: 2;
}

#header07-1z .content-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

#header07-1z h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

#header07-1z h1::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

#header07-1z p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

#header07-1z .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.7s;
}

#header07-1z .btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #375bc8);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 4px 15px rgba(78, 115, 223, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#header07-1z .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(78, 115, 223, 0.6);
}

#header07-1z .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#header07-1z .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Estilos para a seção de features */
#features015-20 .section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

#features015-20 .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

#features015-20 .section-title p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

#features015-20 .icons-item {
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

#features015-20 .item:nth-child(1) .icons-item {
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

#features015-20 .item:nth-child(2) .icons-item {
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

#features015-20 .item:nth-child(3) .icons-item {
    animation: fadeInUp 0.8s ease forwards 0.7s;
}

#features015-20 .icons-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

#features015-20 .icons-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transition: height 0.5s ease;
}

#features015-20 .icons-item:hover::before {
    height: 100%;
}

#features015-20 .icons-img {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: rgba(78, 115, 223, 0.1);
    border-radius: 50% !important;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

#features015-20 .icons-item:hover .icons-img {
    transform: scale(1.1) rotate(5deg);
    background: rgba(78, 115, 223, 0.2);
}

#features015-20 .icons-img img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

#features015-20 .card-box {
    text-align: center;
}

#features015-20 .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

#features015-20 .icons-item:hover .card-title {
    color: var(--primary-color);
}

#features015-20 .card-text {
    font-size: 1rem;
    line-height: 1.6;
}

#recent-episodes .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

#recent-episodes .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

#recent-episodes .section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

#recent-episodes .episode-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
}

#recent-episodes .episode-card:nth-child(1) {
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

#recent-episodes .episode-card:nth-child(2) {
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

#recent-episodes .episode-card:nth-child(3) {
    animation: fadeInUp 0.8s ease forwards 0.7s;
}

#recent-episodes .episode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

#recent-episodes .episode-image {
    height: 200px;
    overflow: hidden;
}

#recent-episodes .episode-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#recent-episodes .episode-card:hover .episode-image img {
    transform: scale(1.1);
}

#recent-episodes .episode-content {
    padding: 1.5rem;
}

#recent-episodes .episode-number {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

#recent-episodes .episode-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

#recent-episodes .episode-card:hover .episode-title {
    color: var(--primary-color);
}

#recent-episodes .episode-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

#recent-episodes .episode-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

#recent-episodes .episode-date {
    font-size: 0.9rem;
}

#recent-episodes .episode-play {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

#recent-episodes .episode-play:hover {
    color: var(--secondary-color);
}

/* Seção de plataformas */
#platforms .section-title {
    margin-bottom: 3rem;
}

#platforms .section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

#platforms .section-title p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

#platforms .platforms-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

#platforms .platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

#platforms .platform-item:nth-child(1) {
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

#platforms .platform-item:nth-child(2) {
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

#platforms .platform-item:nth-child(3) {
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

#platforms .platform-item:nth-child(4) {
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

#platforms .platform-item:hover {
    transform: translateY(-5px);
}

#platforms .platform-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

#platforms .platform-item:hover .platform-icon {
    transform: scale(1.1);
}

#platforms .platform-name {
    font-size: 1rem;
    font-weight: 600;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.smartphone-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.smartphone-info {
    flex: 1;
    max-width: 400px;
    color: white;
    animation: slideInLeft 1s ease-out;
}

.smartphone-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.smartphone-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.smartphone-features {
    list-style: none;
    padding: 0;
}

.smartphone-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.smartphone {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 35px;
    padding: 18px;
    box-shadow:
        0 0 0 6px #1a252f,
        0 0 0 10px #34495e,
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    animation: slideInRight 1s ease-out;
    transform-style: preserve-3d;
}

.smartphone::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background: #555;
    border-radius: 3px;
}

.smartphone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
    z-index: 5;
}

.smartphone-status-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 28px;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    font-size: 11px;
    color: white;
    z-index: 16;
}

.smartphone-time {
    font-weight: bold;
}

.smartphone-indicators {
    display: flex;
    align-items: center;
    gap: 4px;
}

.signal-bars {
    display: flex;
    align-items: flex-end;
    /* Alinha as barras na base */
    gap: 2px;
}

.signal-bar {
    width: 2px;
    background: white;
    border-radius: 1px;
}

.signal-bar:nth-child(1) {
    height: 3px;
}

.signal-bar:nth-child(2) {
    height: 5px;
}

.signal-bar:nth-child(3) {
    height: 7px;
}

.signal-bar:nth-child(4) {
    height: 9px;
}

.battery-icon {
    width: 18px;
    height: 9px;
    border: 1px solid white;
    border-radius: 1px;
    position: relative;
    margin-left: 3px;
}

.battery-icon::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 2px;
    width: 1px;
    height: 5px;
    background: white;
    border-radius: 0 1px 1px 0;
}

.battery-fill {
    width: 75%;
    height: 100%;
    background: #4CAF50;
    border-radius: 1px;
}

.smartphone-video-area {
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    bottom: 70px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 10;
}

.smartphone-video-container {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 11;
}

.smartphone-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    border-radius: 0;
    z-index: 12;
    position: relative;
}

.smartphone-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 15px;
    z-index: 20;
}

.smartphone-control-btn {
    width: 35px;
    height: 35px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 14px;
    z-index: 21;
    position: relative;
    pointer-events: auto;
}

.smartphone-control-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.smartphone-control-btn:active {
    transform: scale(0.95);
}

.smartphone-control-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    z-index: 22;
}

.smartphone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 30%,
            transparent 70%,
            rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    z-index: 15;
}

.smartphone-control-btn:hover::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
}

/* Animações */
@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);
    }
}

/* Efeitos de hover no smartphone */
.smartphone:hover {
    transform: translateY(-3px) rotateY(3deg);
    box-shadow:
        0 0 0 6px #1a252f,
        0 0 0 10px #34495e,
        0 20px 45px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

/* ===== CORREÇÕES MOBILE BÁSICAS ===== */

/* Tablets e telas médias (992px e abaixo) */
@media (max-width: 992px) {
    #header07-1z h1 {
        font-size: 3.5rem;
    }

    #header07-1z p {
        font-size: 1.1rem;
    }

    #features015-20 .icons-item {
        margin-bottom: 2rem;
    }

    .smartphone-container {
        gap: 30px;
        padding: 1.5rem 0;
    }

    .smartphone {
        width: 250px;
        height: 500px;
    }

    .smartphone-info h3 {
        font-size: 1.8rem;
    }

    .smartphone-info p {
        font-size: 1rem;
    }

    .smartphone-features li {
        font-size: 0.9rem;
    }
}

/* ===== SMARTPHONE LARGURA INTEIRA EM MOBILE ===== */

/* Tablets pequenos e smartphones grandes (768px e abaixo) */
@media (max-width: 768px) {
    #header07-1z {
        padding: 4rem 0 2rem;
    }

    #header07-1z h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    #header07-1z p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .smartphone-container {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem 15px;
        text-align: center;
    }

    .smartphone-info {
        max-width: 100%;
        order: 2;
        padding: 0 10px;
    }

    .smartphone {
        width: calc(100vw - 30px);
        max-width: 350px;
        height: calc((100vw - 30px) * 2);
        max-height: 700px;
        order: 1;
        margin: 0 auto;
        padding: calc((100vw - 30px) * 0.06);
        border-radius: calc((100vw - 30px) * 0.1);
        box-shadow:
            0 0 0 calc((100vw - 30px) * 0.02) #1a252f,
            0 0 0 calc((100vw - 30px) * 0.03) #34495e,
            0 calc((100vw - 30px) * 0.05) calc((100vw - 30px) * 0.1) rgba(0, 0, 0, 0.3),
            inset 0 calc((100vw - 30px) * 0.007) calc((100vw - 30px) * 0.012) rgba(255, 255, 255, 0.1);
    }

    .smartphone::before {
        width: calc((100vw - 30px) * 0.15);
        max-width: 50px;
        height: calc((100vw - 30px) * 0.015);
        max-height: 5px;
        top: calc((100vw - 30px) * 0.02);
    }

    .smartphone-screen {
        border-radius: calc((100vw - 30px) * 0.07);
    }

    .smartphone-status-bar {
        height: calc((100vw - 30px) * 0.08);
        max-height: 35px;
        min-height: 25px;
        padding: 0 calc((100vw - 30px) * 0.03);
        font-size: calc((100vw - 30px) * 0.03);
    }

    .smartphone-video-area {
        top: calc((100vw - 30px) * 0.08);
        bottom: calc((100vw - 30px) * 0.2);
    }

    .smartphone-controls {
        height: calc((100vw - 30px) * 0.2);
        max-height: 80px;
        min-height: 60px;
        padding: 0 calc((100vw - 30px) * 0.04);
    }

    .smartphone-control-btn {
        width: calc((100vw - 30px) * 0.1);
        height: calc((100vw - 30px) * 0.1);
        max-width: 40px;
        max-height: 40px;
        min-width: 30px;
        min-height: 30px;
        font-size: calc((100vw - 30px) * 0.04);
    }

    .smartphone-info h3 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .smartphone-info p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .smartphone-features li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
        justify-content: center;
        text-align: left;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    #header07-1z .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }

    #header07-1z .btn-primary,
    #header07-1z .btn-outline {
        padding: 10px 25px;
        font-size: 0.9rem;
        min-width: 200px;
    }

    #features015-20 .section-title h2,
    #recent-episodes .section-title h2,
    #platforms .section-title h2 {
        font-size: 1.8rem;
    }

    #features015-20 .section-title p,
    #platforms .section-title p {
        font-size: 1rem;
    }

    #recent-episodes .episode-image {
        height: 150px;
    }

    #recent-episodes .episode-content {
        padding: 1rem;
    }

    #recent-episodes .episode-title {
        font-size: 1.1rem;
    }

    #recent-episodes .episode-description {
        font-size: 0.9rem;
    }

    #platforms .platforms-container {
        gap: 1.5rem;
    }

    #platforms .platform-icon {
        width: 50px;
        height: 50px;
    }

    html {
        scroll-behavior: smooth;
    }

    .smartphone-control-btn,
    #header07-1z .btn-primary,
    #header07-1z .btn-outline,
    .episode-play {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    body {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Smartphones médios (576px e abaixo) */
@media (max-width: 576px) {
    #header07-1z {
        padding: 3rem 0 1.5rem;
    }

    #header07-1z h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    #header07-1z p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        padding: 0 1rem;
    }

    .smartphone-container {
        padding: 1rem 10px;
    }

    .smartphone {
        width: calc(100vw - 20px);
        height: calc((100vw - 20px) * 2);
        max-height: 600px;
        padding: calc((100vw - 20px) * 0.05);
    }

    .smartphone::before {
        width: calc((100vw - 20px) * 0.15);
        height: calc((100vw - 20px) * 0.012);
        top: calc((100vw - 20px) * 0.018);
    }

    .smartphone-status-bar {
        height: calc((100vw - 20px) * 0.07);
        padding: 0 calc((100vw - 20px) * 0.025);
        font-size: calc((100vw - 20px) * 0.025);
    }

    .smartphone-video-area {
        top: calc((100vw - 20px) * 0.07);
        bottom: calc((100vw - 20px) * 0.18);
    }

    .smartphone-controls {
        height: calc((100vw - 20px) * 0.18);
        padding: 0 calc((100vw - 20px) * 0.03);
    }

    .smartphone-control-btn {
        width: calc((100vw - 20px) * 0.09);
        height: calc((100vw - 20px) * 0.09);
        font-size: calc((100vw - 20px) * 0.035);
    }

    .smartphone-info h3 {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }

    .smartphone-info p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .smartphone-features {
        padding: 0 1rem;
    }

    .smartphone-features li {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    #header07-1z .btn-primary,
    #header07-1z .btn-outline {
        padding: 8px 20px;
        font-size: 0.85rem;
        min-width: 180px;
    }

    #features015-20,
    #recent-episodes,
    #platforms {
        padding: 3rem 0;
    }

    #features015-20 .section-title h2,
    #recent-episodes .section-title h2,
    #platforms .section-title h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    #features015-20 .icons-item {
        padding: 1.5rem;
    }

    #features015-20 .icons-img {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    #features015-20 .icons-img img {
        width: 50px;
        height: 50px;
    }

    #features015-20 .card-title {
        font-size: 1.2rem;
    }

    #features015-20 .card-text {
        font-size: 0.9rem;
    }

    #recent-episodes .episode-image {
        height: 120px;
    }

    #recent-episodes .episode-content {
        padding: 0.8rem;
    }

    #recent-episodes .episode-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    #recent-episodes .episode-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    #recent-episodes .episode-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    #platforms .platforms-container {
        gap: 1rem;
    }

    #platforms .platform-icon {
        width: 40px;
        height: 40px;
    }

    #platforms .platform-name {
        font-size: 0.9rem;
    }
}

/* Smartphones pequenos (480px e abaixo) */
@media (max-width: 480px) {
    #header07-1z h1 {
        font-size: 1.8rem;
    }

    #header07-1z p {
        font-size: 0.85rem;
    }

    .smartphone-container {
        padding: 0.8rem 8px;
    }

    .smartphone {
        width: calc(100vw - 16px);
        height: calc((100vw - 16px) * 1.9);
        max-height: 550px;
        padding: calc((100vw - 16px) * 0.045);
    }

    .smartphone::before {
        width: calc((100vw - 16px) * 0.14);
        height: calc((100vw - 16px) * 0.01);
        top: calc((100vw - 16px) * 0.015);
    }

    .smartphone-status-bar {
        height: calc((100vw - 16px) * 0.065);
        padding: 0 calc((100vw - 16px) * 0.02);
        font-size: calc((100vw - 16px) * 0.022);
    }

    .smartphone-video-area {
        top: calc((100vw - 16px) * 0.065);
        bottom: calc((100vw - 16px) * 0.16);
    }

    .smartphone-controls {
        height: calc((100vw - 16px) * 0.16);
        padding: 0 calc((100vw - 16px) * 0.025);
    }

    .smartphone-control-btn {
        width: calc((100vw - 16px) * 0.08);
        height: calc((100vw - 16px) * 0.08);
        font-size: calc((100vw - 16px) * 0.03);
    }

    .smartphone-info h3 {
        font-size: 1.2rem;
    }

    .smartphone-info p {
        font-size: 0.85rem;
    }

    .smartphone-features li {
        font-size: 0.75rem;
    }
}

/* Smartphones muito pequenos (360px e abaixo) */
@media (max-width: 360px) {
    #header07-1z {
        padding: 2rem 0 1rem;
    }

    #header07-1z h1 {
        font-size: 1.6rem;
    }

    .smartphone-container {
        padding: 0.5rem 5px;
        gap: 1.5rem;
    }

    .smartphone {
        width: calc(100vw - 10px);
        height: calc((100vw - 10px) * 1.8);
        max-height: 500px;
        padding: calc((100vw - 10px) * 0.04);
    }

    .smartphone::before {
        width: calc((100vw - 10px) * 0.13);
        height: calc((100vw - 10px) * 0.008);
        top: calc((100vw - 10px) * 0.012);
    }

    .smartphone-status-bar {
        height: calc((100vw - 10px) * 0.06);
        padding: 0 calc((100vw - 10px) * 0.018);
        font-size: calc((100vw - 10px) * 0.02);
    }

    .smartphone-video-area {
        top: calc((100vw - 10px) * 0.06);
        bottom: calc((100vw - 10px) * 0.15);
    }

    .smartphone-controls {
        height: calc((100vw - 10px) * 0.15);
        padding: 0 calc((100vw - 10px) * 0.02);
    }

    .smartphone-control-btn {
        width: calc((100vw - 10px) * 0.075);
        height: calc((100vw - 10px) * 0.075);
        font-size: calc((100vw - 10px) * 0.025);
    }

    .smartphone-info h3 {
        font-size: 1.1rem;
    }

    .smartphone-info p {
        font-size: 0.8rem;
    }

    .smartphone-features li {
        font-size: 0.7rem;
    }

    #header07-1z .btn-primary,
    #header07-1z .btn-outline {
        padding: 6px 15px;
        font-size: 0.8rem;
        min-width: 150px;
    }

    #features015-20,
    #recent-episodes,
    #platforms {
        padding: 2rem 0;
    }

    #features015-20 .section-title h2,
    #recent-episodes .section-title h2,
    #platforms .section-title h2 {
        font-size: 1.4rem;
    }
}

/* Orientação landscape para smartphones */
@media (max-width: 768px) and (orientation: landscape) {
    #header07-1z {
        padding: 2rem 0 1rem;
    }

    .smartphone-container {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        padding: 1rem 10px;
    }

    .smartphone {
        width: 50vw;
        height: calc(50vw * 1.6);
        max-width: 300px;
        max-height: 480px;
        order: 1;
        padding: calc(50vw * 0.03);
    }

    .smartphone-info {
        order: 2;
        text-align: left;
        width: 45vw;
    }

    .smartphone::before {
        width: calc(50vw * 0.12);
        height: calc(50vw * 0.008);
        top: calc(50vw * 0.015);
    }

    .smartphone-status-bar {
        height: calc(50vw * 0.05);
        padding: 0 calc(50vw * 0.015);
        font-size: calc(50vw * 0.018);
    }

    .smartphone-video-area {
        top: calc(50vw * 0.05);
        bottom: calc(50vw * 0.12);
    }

    .smartphone-controls {
        height: calc(50vw * 0.12);
        padding: 0 calc(50vw * 0.02);
    }

    .smartphone-control-btn {
        width: calc(50vw * 0.06);
        height: calc(50vw * 0.06);
        font-size: calc(50vw * 0.02);
    }

    .smartphone-info h3 {
        font-size: 1.2rem;
    }

    .smartphone-info p {
        font-size: 0.8rem;
    }

    .smartphone-features li {
        font-size: 0.7rem;
    }
}

@supports not (width: calc(100vw - 30px)) {
    @media (max-width: 768px) {
        .smartphone {
            width: 90vw;
            height: 180vw;
            max-width: 350px;
            max-height: 700px;
        }
    }

    @media (max-width: 576px) {
        .smartphone {
            width: 95vw;
            height: 190vw;
            max-width: 300px;
            max-height: 600px;
        }
    }
}