html, body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
    color: #333;
    min-height: 100vh;
}
.container {
    width: 90%;
    max-width: 1400px !important;
    margin: auto;
    padding: 10px 10px !important;
    background: white;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 12px;
}
h1, h2, h3 {
    font-weight: 600;
}
h1 {
    font-size: 2.2rem;
    color: #2d3436;
    margin-bottom: 20px;
}
h2 {
    font-size: 1.8rem;
    color: #2d3436;
}
p {
    color: #636e72;
    line-height: 1.6;
}
form {
    margin: 30px auto;
    max-width: 400px;
}
form input {
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}
form input:focus {
    border-color: #a0241c; /* Darker Red */
    box-shadow: 0 0 8px rgba(160, 36, 28, 0.4); /* Darker Red */
    outline: none;
}
form button {
    padding: 14px 28px;
    background: #a0241c; /* Darker Red */
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
form button:hover {
    background: #821e16; /* Even Darker Red */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(130, 30, 22, 0.3); /* Even Darker Red */
}
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.tab-btn {
    padding: 15px 30px;
    background: #f1f2f6;
    border: none;
    cursor: pointer;
    flex: 1;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    color: #636e72;
}
.tab-btn.active {
    background: #a0241c; /* Darker Red */
    color: white;
}
.tab-btn:hover:not(.active) {
    background: #e6e7eb;
}
.tab-content {
    display: none;
    animation: fadeIn 0.6s;
}
.tab-content.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.modelo-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid #f5f5f5;
    margin-bottom: 20px;
}
.modelo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.modelo-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.4s ease;
}
.modelo-card:hover img {
    transform: scale(1.05);
}
.modelo-info {
    padding: 15px 20px;
    text-align: center;
    border-top: 1px solid #f5f5f5;
}
.modelo-info h3 {
    margin: 0 0 5px 0;
    color: #2d3436;
    font-size: 18px;
    font-weight: 600;
}
.modelo-info p {
    margin: 0 0 15px 0;
    color: #636e72;
    font-size: 14px;
}
.modelo-info p i {
    color: #a0241c; /* Darker Red */
    margin-right: 5px;
}
.modelo-info a.ver-detalhes {
    background: #a0241c; /* Darker Red */
    color: white;
    text-decoration: none;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: block;
}
.modelo-info a.ver-detalhes:hover {
    background: #821e16; /* Even Darker Red */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(130, 30, 22, 0.3); /* Even Darker Red */
}
.modelo-info a.vip-access {
    background: #f39c12 !important; /* Orange */
    color: white;
    text-decoration: none;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: block;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3) !important; /* Orange */
}
.modelo-info a.vip-access:hover {
    background: #e67e22 !important; /* Darker Orange */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4) !important; /* Darker Orange */
}
.modelo-detalhes {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}
@media (min-width: 768px) {
    .modelo-detalhes {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }
}
.modelo-foto {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    position: relative;
}
.modelo-foto img {
    width: 100%;
    transition: transform 0.5s ease;
    display: block;
}
.modelo-foto:hover img {
    transform: scale(1.03);
}
.modelo-specs {
    flex: 1;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
@media (min-width: 768px) {
    .modelo-specs {
        margin-top: 0;
    }
}
.modelo-specs h2 {
    margin-top: 0;
    color: #2d3436;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}
.modelo-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.modelo-specs li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #636e72;
    font-size: 16px;
}
.modelo-specs li strong {
    color: #2d3436;
    font-weight: 600;
}
.modelo-specs p {
    margin-top: 25px;
    line-height: 1.7;
    color: #636e72;
    font-size: 16px;
}
.cta-button {
    display: inline-block;
    background: linear-gradient(to right, #a0241c, #821e16); /* Darker Red */
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    text-align: center;
    margin-top: 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(130, 30, 22, 0.3); /* Darker Red */
}
.cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 25px rgba(130, 30, 22, 0.4); /* Darker Red */
    animation: pulse 1.5s infinite;
}
.navbar {
    background-color: #a0241c !important; /* Darker Red */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(130, 30, 22, 0.3); /* Darker Red */
    min-height: 100px !important;
}
.navbar img.logo {
    height: 50px !important;
    max-height: 50px !important;
    width: auto !important;
    display: block !important;
}
.navbar h1 {
    margin: 0;
    font-size: 32px;
    color: white;
    display: flex;
    align-items: center;
}
.navbar h1 i {
    margin-right: 10px;
    animation: pulse 1.5s infinite;
    color: white;
    font-size: 32px;
}
.navbar-user {
    display: flex;
    align-items: center;
}
.navbar-user span {
    margin-right: 20px;
    font-weight: 500;
}
.logout-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.logout-btn:hover {
    background: #fff;
    color: #821e16; /* Even Darker Red */
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(130, 30, 22, 0.3); /* Even Darker Red */
}
.popup {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}
.popup-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: popupIn 0.5s forwards;
}
@keyframes popupIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fechar {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #636e72;
    transition: color 0.3s;
}
.fechar:hover {
    color: #821e16; /* Even Darker Red */
}
.voltar-link {
    display: inline-block;
    color: #a0241c; /* Darker Red */
    text-decoration: none;
    margin-top: 25px;
    font-weight: 500;
    transition: all 0.3s;
}
.voltar-link:hover {
    color: #821e16; /* Even Darker Red */
    transform: translateX(-5px);
}
.voltar-link::before {
    content: '←';
    margin-right: 5px;
}

/* Badge de exclusivo */
.modelo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #a0241c, #821e16); /* Darker Red */
    color: white;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(130, 30, 22, 0.3); /* Darker Red */
    z-index: 5;
}

.vip-badge {
    background: linear-gradient(45deg, #f39c12, #e67e22); /* Orange */
    animation: pulse 1.5s infinite;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.5); /* Orange */
}

.modelo-img-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

/* Estilo para imagens com blur (VIP) */
.modelo-img-blur {
    filter: blur(8px);
    transition: filter 0.3s ease;
}

/* Overlay para conteúdo VIP */
.modelo-card .modelo-img-container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
}

.modelo-card:hover .modelo-img-container:after {
    background: rgba(0, 0, 0, 0.2);
}

/* Ícone de cadeado para conteúdo VIP */
.modelo-img-blur + .vip-badge:before {
    content: '\f023';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 5px;
}

/* Estilo especial para botão de acesso VIP */
.modelo-card a[href*="id="]:contains("Acesso VIP") {
    background: linear-gradient(to right, #f39c12, #e67e22); /* Orange */
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3); /* Orange */
}

.modelo-card a[href*="id="]:contains("Acesso VIP"):hover {
    background: linear-gradient(to right, #e67e22, #f39c12); /* Orange */
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.5); /* Orange */
}

/* Fix para o seletor :contains que não é suportado nativamente */
.modelo-card a.vip-access {
    background: linear-gradient(to right, #f39c12, #e67e22) !important; /* Orange */
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3) !important; /* Orange */
}

.modelo-card a.vip-access:hover {
    background: linear-gradient(to right, #e67e22, #f39c12) !important; /* Orange */
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.5) !important; /* Orange */
}

.modelo-descricao {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #eee;
}

.modelo-descricao h3 {
    color: #a0241c; /* Darker Red */
    font-size: 20px;
    margin-bottom: 15px;
}

/* Animações adicionais */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Melhorias responsivas adicionais */
@media (max-width: 600px) {
    .tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        border-radius: 0;
    }
    
    .tab-btn:first-child {
        border-radius: 10px 10px 0 0;
    }
    
    .tab-btn:last-child {
        border-radius: 0 0 10px 10px;
    }
    
    .navbar {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .navbar-user {
        margin-top: 15px;
        justify-content: center;
    }
}

/* Efeito de hover para imagens na página de detalhes */
.modelo-foto:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(160, 36, 28, 0.2) 100%); /* Darker Red */
    pointer-events: none;
}

/* Estilos para a navbar com links */
.navbar-links {
    display: flex;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    margin-left: 10px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link:hover {
    background: #a0241c; /* Darker Red */
    transform: translateY(-2px);
}

/* Estilos para seção hero */
.hero {
    min-height: 120vh !important;
    padding-top: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('banner.png') no-repeat;
    background-size: cover;
    background-position: center center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);  /* Ajustado para melhor visibilidade com a nova imagem */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding-top: 100px !important;
}

.hero-text {
    margin-top: 0 !important;
    position: relative;
    top: -80px;
}

.hero-content {
    max-width: 800px;
    padding: 100px 0 !important;
    margin: 50px 0 !important;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: fadeIn 1.2s ease-out;
}

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

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(to right, #a0241c, #821e16); /* Darker Red */
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    margin: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(130, 30, 22, 0.3); /* Darker Red */
}

.btn-secondary {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    margin: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Seções da página inicial */
.section {
    padding: 5px 0 !important;
    margin-top: -5px !important;
    margin-bottom: 0 !important;
}

.section .section-title {
    font-size: 1.1rem !important;
    margin-bottom: 5px !important;
}

.section .section-title h2 {
    font-size: 1.2rem !important;
    margin-bottom: 5px !important;
}

.section .section-subtitle {
    font-size: 0.95rem !important;
    margin-bottom: 5px !important;
}

.section .features {
    gap: 10px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.section .feature-card {
    padding: 5px !important;
    min-height: unset !important;
    height: auto !important;
}

.section-title {
    text-align: center;
    margin-bottom: 80px !important;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #a0241c; /* Darker Red */
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2em !important;
    color: #636e72;
    max-width: 700px;
    margin: 30px 0 !important;
}

/* Cards da seção features */
.features {
    margin: 120px 0 !important;
    padding: 50px 0 !important;
}

.feature-card {
    padding: 60px !important;
    margin: 40px 0 !important;
    background: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
    min-height: 400px !important;
}

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

.feature-icon {
    background: linear-gradient(135deg, #a0241c, #821e16); /* Darker Red */
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    margin-top: 30px !important;
    color: white;
    font-size: 32px;
    box-shadow: 0 10px 20px rgba(130, 30, 22, 0.2); /* Darker Red */
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d3436;
}

.feature-text {
    color: #636e72;
    line-height: 1.7;
}

/* Seção testemunhos */
.testimonials {
    background: #f9f9f9;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #636e72;
    line-height: 1.7;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-name {
    font-weight: 600;
    color: #2d3436;
    font-size: 1.1rem;
}

.testimonial-title {
    color: #a0241c; /* Darker Red */
    font-size: 0.9rem;
}

/* Seção CTA */
.cta-section {
    background: linear-gradient(to top, #821e16, #FEFEFE); /* Even Darker Red */
    color: white;
    text-align: center;
    padding: 80px 0;
    margin: 0px;
    margin-top: 1px;
    margin-bottom: -1px;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background: white;
    color: #821e16; /* Even Darker Red */
    display: inline-block;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background-color: #821e16; /* Even Darker Red */
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
}

.footer-column h3:after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: linear-gradient(to right, #a0241c, #821e16); /* Darker Red */
    margin-top: 10px;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #fcebeb; /* Lighter red for hover */
    transform: translateX(3px);
}

.footer-social {
    display: flex;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
    color: white;
    font-size: 18px;
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(to right, #a0241c, #821e16); /* Darker Red */
    transform: translateY(-5px) rotate(5deg);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Responsividade adicional */
@media (max-width: 768px) {
    .hero {
        background-position: center center;
        height: 90vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        padding: 25px;
        margin: 0 15px;
        width: 90%;
        max-width: 450px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-secondary {
        display: block;
        margin: 15px auto;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .hero {
        background-position: center center;
        background-size: cover;
    }
    
    .hero::before {
        background: rgba(0, 0, 0, 0.6); /* Escurecimento maior para telas pequenas */
    }
    
    .hero-content {
        width: 90%;
        max-width: 350px;
        padding: 25px 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        background-position: center center;
        height: 100vh;
        justify-content: center;
        align-items: center;
    }
    
    .hero-content {
        width: 85%;
        max-width: 320px;
        padding: 20px;
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.4rem !important;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
    }
}

/* Orientação em paisagem em dispositivos móveis */
@media (max-height: 500px) and (max-width: 900px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 40px 0;
    }
    
    .hero-content {
        padding: 20px 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem !important;
    }
}

/* Classe para centralização em dispositivos móveis */
.mobile-centered {
    background-position: center center !important;
    margin-bottom: -10px;
}

@media (max-width: 768px) {
    .mobile-centered {
        background-size: cover !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Ajuste específico para iPhone e dispositivos menores */
@media (max-width: 375px) {
    .mobile-centered {
        background-position: center center !important;
    }
    
    .hero-content {
        width: 92%;
        padding: 20px 12px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .hero br {
        display: none; /* Remove quebra de linha em telas muito pequenas */
    }
}

/* Seção App Preview */
.app-preview-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.phone-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 60px;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: #111;
    border-radius: 40px;
    padding: 15px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25), inset 0 2px 10px rgba(255,255,255,0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    border: 8px solid #222;
    overflow: hidden;
}

/* Reflexo da tela */
.phone-frame:before {
    content: '';
    position: absolute;
    width: 150px;
    height: 30px;
    background: #111;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 20px 20px;
    z-index: 2;
}

/* Botão home */
.phone-frame:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.2);
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: inset 0 0 5px rgba(255,255,255,0.1);
    backdrop-filter: blur(2px);
}

/* Reflexo suave na tela */
.phone-frame::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 70%);
    z-index: 3;
    pointer-events: none;
}

/* Adicionando notch para o celular */
.phone-frame .notch {
    position: absolute;
    width: 150px;
    height: 25px;
    background: #000;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 15px 15px;
    z-index: 3;
    overflow: hidden;
}

.phone-frame .notch:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #555;
    border-radius: 50%;
    top: 7px;
    left: 70px;
    box-shadow: 0 0 5px rgba(255,255,255,0.3);
}

/* Câmera na notch */
.phone-frame .notch:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
    top: 8px;
    left: 50px;
    border: 1px solid #444;
    box-shadow: inset 0 0 2px rgba(0,0,0,0.8), 0 0 2px rgba(255,255,255,0.2);
}

/* Botões laterais */
.phone-frame .volume-up {
    position: absolute;
    width: 3px;
    height: 30px;
    background: #333;
    left: -11px;
    top: 120px;
    border-radius: 3px 0 0 3px;
    box-shadow: -1px 0 1px rgba(0,0,0,0.5);
}

.phone-frame .volume-down {
    position: absolute;
    width: 3px;
    height: 30px;
    background: #333;
    left: -11px;
    top: 160px;
    border-radius: 3px 0 0 3px;
    box-shadow: -1px 0 1px rgba(0,0,0,0.5);
}

.phone-frame .power-button {
    position: absolute;
    width: 3px;
    height: 40px;
    background: #333;
    right: -11px;
    top: 140px;
    border-radius: 0 3px 3px 0;
    box-shadow: 1px 0 1px rgba(0,0,0,0.5);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
    position: relative;
}

/* Barra de status */
.phone-screen:before {
    display: none;
}

/* Ícones da barra de status */
.phone-screen .status-icons {
    position: absolute;
    top: 6px;
    right: 15px;
    z-index: 2;
    font-size: 12px;
    color: #333;
}

.phone-screen .status-icons i {
    margin-left: 5px;
}

.phone-screen .status-time {
    position: absolute;
    top: 6px;
    left: 15px;
    z-index: 2;
    font-size: 12px;
    color: #333;
    font-weight: 500;
}

.phone-header {
    background: linear-gradient(to right, #a0241c, #821e16); /* Darker Red */
    color: rgb(255, 255, 255); /* Changed to white for better contrast */
    padding: 15px;
    padding-top: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    margin-top: 0;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-content {
    padding: 15px;
    padding-top: 10px;
    overflow-y: auto;
    height: calc(100% - 54px - 50px);
}

/* Adiciona botões na parte inferior da tela */
.phone-screen:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #f9f9f9;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #eee;
    z-index: 2;
}

/* Botões de navegação na parte inferior */
.phone-nav-buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 3;
}

.phone-nav-buttons .nav-dot {
    width: 5px;
    height: 5px;
    background: #ccc;
    border-radius: 50%;
}

.phone-nav-buttons .nav-home {
    width: 38px;
    height: 4px;
    background: #aaa;
    border-radius: 4px;
}

.phone-nav-buttons .nav-back {
    border-left: 2px solid #aaa;
    border-bottom: 2px solid #aaa;
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
}

.preview-item {
    display: flex;
    background: #fff;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

.preview-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.preview-img {
    width: 80px;
    height: 80px;
    background-image: url('https://www.manualdeelegancia.com/wp-content/uploads/2021/09/Post-para-Blog-1.png');
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    margin: 10px;
}

.preview-item:nth-child(2) .preview-img {
    background-image: url('https://http2.mlstatic.com/D_NQ_NP_751242-MLB78258942338_082024-O-saia-colegial-preguinhas-mini-saia-balon-mulheres-estilosas.webp');
}

.preview-item:nth-child(3) .preview-img {
    background-image: url('https://http2.mlstatic.com/D_NQ_NP_682502-MLB78259050046_082024-O-saia-colegial-preguinhas-mini-saia-balon-mulheres-estilosas.webp');
}

.preview-text {
    padding: 15px 15px 15px 5px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.preview-text h4 {
    margin: 0 0 5px 0;
    color: #2d3436;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.preview-text p {
    margin: 0;
    color: #636e72;
    font-size: 14px;
}

/* Ícone de like no preview */
.preview-item:after {
    content: '\f004';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    right: 15px;
    top: 15px;
    color: #a0241c; /* Darker Red */
    font-size: 16px;
}

.preview-item:hover:after {
    content: '\f004';
    font-weight: 900;
    animation: pulse 1s infinite;
}

.app-features {
    flex: 1;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.app-feature {
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.app-feature .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a0241c, #821e16); /* Darker Red */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(130, 30, 22, 0.2); /* Darker Red */
}

.app-feature h3 {
    margin: 0 0 10px 0;
    color: #2d3436;
    font-size: 18px;
}

.app-feature p {
    margin: 0;
    color: #636e72;
    line-height: 1.6;
}

/* Animação para o telefone */
@keyframes float {
    0% { transform: perspective(1000px) rotateY(-5deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-2deg) translateY(-10px); }
    100% { transform: perspective(1000px) rotateY(-5deg) translateY(0); }
}

.phone-frame {
    animation: float 5s ease-in-out infinite;
}

/* Animação de brilho sutil para o reflexo da tela */
@keyframes glare {
    0% { opacity: 0.5; transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { opacity: 0.7; }
    100% { opacity: 0.5; transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.phone-frame::after {
    animation: pulse 3s ease-in-out infinite;
}

/* Efeito de luminosidade no notch */
.phone-frame .notch::after {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px rgba(255,255,255,0.3); }
    to { box-shadow: 0 0 8px rgba(255,255,255,0.5); }
}

/* Responsividade para o novo design do telefone */
@media (max-width: 992px) {
    .phone-preview {
        flex-direction: column;
    }
    
    .app-features {
        max-width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .app-feature {
        flex: 1 1 calc(50% - 30px);
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .app-feature {
        flex: 1 1 100%;
    }
    
    .phone-frame {
        transform: perspective(1000px) rotateY(0);
    }
    
    @keyframes float {
        0% { transform: perspective(1000px) rotateY(0) translateY(0); }
        50% { transform: perspective(1000px) rotateY(0) translateY(-10px); }
        100% { transform: perspective(1000px) rotateY(0) translateY(0); }
    }
}

@media (max-width: 480px) {
    .phone-frame {
        width: 280px;
        height: 550px;
    }
    
    .preview-img {
        width: 70px;
        height: 70px;
    }
}

/* Filtros do catálogo */
.phone-catalog-filter {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-top: -10px;
}

.phone-catalog-filter .filter-tab {
    font-size: 12px;
    color: #575757;
    padding: 5px 0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.phone-catalog-filter .filter-tab:hover {
    color: #a0241c; /* Darker Red */
}

.phone-catalog-filter .filter-tab.active {
    color: #a0241c; /* Darker Red */
    font-weight: 600;
}

.phone-catalog-filter .filter-tab.active:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #a0241c; /* Darker Red */
    border-radius: 3px;
}

.phone-catalog-filter .filter-tab:not(.active) {
    background: #f8f9fa;
    color: #999;
    cursor: not-allowed;
    opacity: 0.5;
}

/* Conteúdo das abas */
.catalog-content {
    display: none;
}

.catalog-content.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

.preview-img-4 {
    background-image: url('https://down-br.img.susercontent.com/file/br-11134207-7r98o-lkqnudqfq4rca0') !important;
}

.preview-img-5 {
    background-image: url('https://ae01.alicdn.com/kf/S76a3279b6e374709ae0401eb09a224215.jpg_640x640q90.jpg') !important;
}

.preview-img-6 {
    background-image: url('https://p.globalsources.com/IMAGES/PDT/B5216780081/Vestidos-elegantes-das-mulheres-sexy.jpg') !important;
}

/* Novas imagens para o catálogo */
.preview-img-7 {
    background-image: url('https://s.alicdn.com/@sc04/kf/Ha4fbcab66d1448d79ec79618d1b8ba4ao.jpg_720x720q50.jpg') !important;
}

.preview-img-8 {
    background-image: url('https://boutiquedoencanto.com.br/cdn/shop/files/S9fb8bc708954496e8e87f8999dbf314c9.webp?v=1734100242&width=750') !important;
}

/* Estilo para favoritos */
.preview-item.favorite:after {
    content: '\f004';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #a0241c; /* Darker Red */
}

/* Melhorar a aparência das classificações por estrelas */
.preview-item:nth-child(4) .preview-text:after,
.preview-item:nth-child(5) .preview-text:after,
.preview-item:nth-child(6) .preview-text:after {
    letter-spacing: 1px;
}

/* Remova os estilos de notificação e busca */
.phone-notification,
.notification-dot,
.phone-search,
.phone-search i,
.phone-search input {
    display: none;
}

/* Estilos para o popup VIP */
.vip-btn {
    background: linear-gradient(to right, #f39c12, #e67e22) !important; /* Orange */
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3) !important; /* Orange */
    margin-top: 20px;
}

.vip-btn:hover {
    background: linear-gradient(to right, #e67e22, #f39c12) !important; /* Orange */
    box-shadow: 0 12px 25px rgba(230, 126, 34, 0.4) !important; /* Orange */
}

/* Ícone coroa no botão */
.vip-btn:before {
    content: '\f521';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
}

.popup h2 {
    color: #2d3436;
    margin-bottom: 20px;
}

.popup p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #636e72;
}

/* Animação para o botão VIP */
@keyframes shine {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.vip-btn {
    background-size: 200% auto !important;
    animation: shine 3s linear infinite !important;
}

/* Estilos para o componente de chat */
.chat-container {
    margin: 40px auto;
    max-width: 800px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #eee;
}

.chat-header {
    background: linear-gradient(to right, #a0241c, #821e16); /* Darker Red */
    color: white; /* Changed for better contrast */
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.chat-header h3 i {
    margin-right: 10px;
}

.chat-status {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin: 0;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.status-dot.online {
    background-color: #6bed99;
    box-shadow: 0 0 5px #6bed99;
}

.chat-messages {
    padding: 20px;
    height: 300px;
    overflow-y: auto;
    background: #f9f9f9;
}

.chat-message {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    animation: fadeIn 0.3s ease-out;
}

.chat-message.modelo {
    justify-content: flex-start;
}

.chat-message.usuario {
    justify-content: flex-end;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
    border: 2px solid #a0241c; /* Darker Red */
}

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

.message-content {
    background: white;
    padding: 10px 15px;
    border-radius: 18px;
    max-width: 70%;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    position: relative;
}

.chat-message.modelo .message-content {
    border-top-left-radius: 2px;
    background: white;
    border-left: 3px solid #a0241c; /* Darker Red */
}

.chat-message.usuario .message-content {
    border-top-right-radius: 2px;
    background: #fff3e6; /* Lighter Orange */
    text-align: right;
    border-right: 3px solid #e67e22; /* Orange */
}

.message-name {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.chat-message.modelo .message-name {
    color: #a0241c; /* Darker Red */
}

.chat-message.usuario .message-name {
    color: #e67e22; /* Orange */
}

.message-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #2d3436;
}

.message-time {
    font-size: 10px;
    color: #a0a0a0;
    display: block;
    margin-top: 5px;
}

.chat-input {
    display: flex;
    padding: 10px;
    background: white;
    border-top: 1px solid #eee;
}

.chat-input input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
}

.chat-input input:focus {
    border-color: #a0241c; /* Darker Red */
    box-shadow: 0 0 0 3px rgba(160, 36, 28, 0.2); /* Darker Red */
}

.chat-input button {
    background: linear-gradient(to right, #a0241c, #821e16); /* Darker Red */
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(130, 30, 22, 0.2); /* Darker Red */
}

.chat-input button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(130, 30, 22, 0.3); /* Darker Red */
}

.chat-input button i {
    font-size: 16px;
}

/* Indicador de digitação */
.typing-indicator {
    display: flex;
    align-items: center;
    column-gap: 4px;
    padding: 5px 0;
}

.typing-indicator span {
    height: 8px;
    width: 8px;
    background-color: #a0241c; /* Darker Red */
    border-radius: 50%;
    opacity: 0.6;
    animation: typing 1s infinite;
}

.typing-indicator span:nth-child(1) {
    animation-delay: 0s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.3s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes typing {
    0% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(-5px); opacity: 1; }
    100% { transform: translateY(0); opacity: 0.6; }
}

/* Responsividade do chat */
@media (max-width: 768px) {
    .chat-container {
        margin: 20px auto;
    }
    
    .chat-messages {
        height: 250px;
    }
    
    .message-content {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .chat-messages {
        height: 220px;
        padding: 15px;
    }
    
    .message-content {
        max-width: 85%;
        padding: 8px 12px;
    }
    
    .chat-input {
        padding: 8px;
    }
    
    .chat-input input {
        padding: 10px 12px;
    }
    
    .chat-input button {
        width: 40px;
        height: 40px;
    }
}

/* Efeito de scroll personalizado para o chat */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #a0241c; /* Darker Red */
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #821e16; /* Even Darker Red */
}

/* Estilos para o bloqueio de chat */
.chat-locked {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(160, 36, 28, 0.05); /* Darker Red */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px dashed #a0241c; /* Darker Red */
    margin: 20px 0;
    min-height: 200px;
}

.lock-icon {
    font-size: 40px;
    color: #a0241c; /* Darker Red */
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.chat-locked h3 {
    color: #2d3436;
    margin-bottom: 10px;
    font-size: 22px;
}

.chat-locked p {
    color: #636e72;
    margin-bottom: 20px;
    max-width: 80%;
}

.chat-locked .vip-btn {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%); /* Orange */
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3); /* Orange */
    font-size: 14px;
    padding: 10px 20px;
}

.chat-locked .vip-btn:hover {
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%); /* Orange */
    transform: translateY(-2px);
}

/* Estilos para a galeria de miniaturas de pés */
.pezinhos-galeria {
    margin-top: 20px;
    text-align: center;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid #f0f0f0;
}

.pezinhos-galeria:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #f9f9f9;
    border-top: 1px solid #f0f0f0;
    border-left: 1px solid #f0f0f0;
    transform: translateX(-50%) rotate(45deg);
}

.pezinhos-galeria h4 {
    font-size: 16px;
    color: #2d3436;
    margin-bottom: 15px;
    font-weight: 600;
}

.miniaturas-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.miniatura {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.miniatura:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.miniatura:not(:last-child) {
    margin-right: 2px;
}

.miniatura-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.miniatura:hover .miniatura-img {
    transform: scale(1.1);
}

.miniatura-img.blur {
    filter: blur(4px);
}

.miniatura-bloqueada {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.miniatura-bloqueada i {
    font-size: 20px;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
    animation: pulse 1.5s infinite;
}

.miniatura:first-child {
    position: relative;
}

.miniatura:first-child:after {
    content: "Grátis";
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #2ecc71;
    color: white;
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: bold;
    opacity: 0.9;
}

.pezinhos-galeria .vip-btn {
    padding: 8px 15px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .miniaturas-container {
        justify-content: center;
    }
    
    .miniatura {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .miniaturas-container {
        gap: 8px;
    }
    
    .miniatura {
        width: 55px;
        height: 55px;
    }
}

/* Estilos para o modal de foto ampliada */
.foto-popup-content {
    max-width: 600px;
    padding: 20px;
}

.foto-popup-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.foto-info {
    text-align: center;
    margin-top: 15px;
}

.foto-info h3 {
    color: #a0241c; /* Darker Red */
    font-size: 18px;
    margin-bottom: 10px;
}

.foto-info p {
    color: #636e72;
    margin-bottom: 15px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Estilos para informações do pacote */
.pacote-info {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.pacote-item {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 5px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    font-size: 12px;
    color: #636e72;
}

.pacote-item i {
    margin-right: 5px;
    color: #a0241c; /* Darker Red */
}

.pacote-item:nth-child(1) i {
    color: #a0241c; /* Darker Red */
}

.pacote-item:nth-child(2) i {
    color: #0984e3;
}

.pacote-item:nth-child(3) i {
    color: #f39c12; /* Orange */
}

.pacote-item span {
    font-weight: 600;
}

@media (max-width: 480px) {
    .pacote-info {
        gap: 8px;
    }
    
    .pacote-item {
        padding: 4px 8px;
        font-size: 11px;
    }
}

/* Estilos para características dos pés */
.pes-caracteristicas {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
}

.pes-caracteristicas li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 28px;
    color: #636e72;
    font-size: 14px;
}

.pes-caracteristicas li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #2ecc71;
    font-size: 16px;
}

.modelo-descricao strong {
    color: #a0241c; /* Darker Red */
    font-weight: 600;
    font-size: 16px;
}

.modelo-descricao p:last-child {
    margin-top: 20px;
    font-weight: 500;
    color: #2d3436;
    font-size: 15px;
}

.phone-catalog-filter button:not(.active) {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
    position: relative;
    opacity: 0.7;
}

.phone-catalog-filter button:not(.active)::after {
    display: none;
}

header {
    background-color: #a0241c !important; /* Darker Red */
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Forçando header rosa */
header,
.navbar,
header .navbar,
body > header,
body > .navbar {
    background-color: #a0241c !important; /* Darker Red */
    background: #a0241c !important; /* Darker Red */
    background-image: none !important;
}

.navbar .logo {
    height: 80px !important;
    width: auto !important;
    margin: -15px 0;
}

/* Forçando tamanho da logo */
.navbar img.logo,
.navbar img[src*="logoo b.png"],
.navbar img[alt="Foot Love"] {
    height: 100px !important;
    width: auto !important;
    max-width: none !important;
    transform: scale(1.5) !important;
    margin: 0px 0 !important;
    display: block !important;
}

.catalog-btn {
    margin-top: 5px !important;
}

.section .features .feature-card:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 10px !important;
}

.section .features {
    margin-top: 0 !important;
}

.container .section-subtitle {
    font-weight: bold !important;
}