/* Reset e cores base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background-color: #ffffff;
    color: #111111;
    line-height: 1.5;
    overflow-x: hidden;
    background-repeat: repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: 100px 100px;
}

/* Garantir que o conteúdo fique legível sobre o fundo */
header,
.hero,
.servicos,
.contato,
.pag-servico,
footer {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes shine {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Assinatura do desenvolvedor */
.assinatura {
    margin-top: 12px;
    font-size: 0.75rem;
    color: #aaa;
    text-align: center;
    transition: all 0.3s;
}

.assinatura:hover {
    color: #f39c12;
}

.assinatura strong {
    transition: all 0.3s;
}

.assinatura:hover strong {
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .assinatura {
        font-size: 0.7rem;
        margin-top: 8px;
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

/* Cabeçalho */
header {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo com imagem ao lado do texto */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: #1e3c72;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-img:hover {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 6px 16px rgba(243, 156, 18, 0.4);
}

.logo h1 {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    color: white;
    transition: transform 0.3s;
}

.logo h1:hover {
    transform: scale(1.02);
}

.logo h1 span {
    font-weight: 300;
    font-size: 1.2rem;
}

.logo-detalhe {
    font-size: 1.2rem;
    color: #f39c12;
    font-weight: 300;
    margin-left: 6px;
    display: block;
    font-style: italic;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 28px;
    font-weight: 500;
    transition: all 0.3s;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    position: relative;
}

nav a:hover,
nav a.ativo {
    color: #f39c12;
    border-bottom-color: #f39c12;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f39c12;
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* Hero */
.hero {
    background: linear-gradient(120deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 10px;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-texto {
    flex: 1;
    text-align: left;
}

.hero-imagem {
    flex: 1;
    text-align: center;
}

.hero-imagem img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.hero-imagem img:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
}

.hero h2 {
    font-size: 2.8rem;
    color: #111;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.destaque {
    color: #f39c12;
    position: relative;
    display: inline-block;
}

.destaque::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f39c12;
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: right;
}

.destaque:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hero p {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.btn-principal {
    background-color: #f39c12;
    color: #111;
    padding: 12px 32px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 40px;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-principal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-principal:hover::before {
    left: 100%;
}

.btn-principal:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.btn-principal:active {
    transform: translateY(0);
}

/* Serviços */
.servicos {
    padding: 70px 0;
    background: rgba(255, 255, 255, 0.95);
}

.servicos h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #111;
}

.cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 32px 24px;
    text-align: center;
    flex: 1;
    min-width: 240px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eaeef2;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(243,156,18,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #f39c12;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    transition: transform 0.3s;
    display: inline-block;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card h4 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #111;
}

.card p {
    color: #333;
    margin-bottom: 24px;
}

.btn-card {
    background: transparent;
    border: 2px solid #f39c12;
    color: #f39c12;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-card:hover {
    background: #f39c12;
    color: #111;
    transform: scale(1.05);
}

/* Formulário de contato */
.contato {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 70px 0;
    text-align: center;
}

.contato h3 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.contato p {
    color: #555;
    margin-bottom: 40px;
}

.form-contato {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f39c12;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
    transform: translateY(-2px);
}

.form-contato button {
    width: 100%;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.form-contato button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.form-contato button:hover::before {
    left: 100%;
}

/* Páginas de serviço */
.pag-servico {
    padding: 80px 0;
    background: rgba(254, 254, 254, 0.95);
}

.pag-servico h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: #111;
}

.conteudo-servico {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.texto {
    flex: 2;
    min-width: 260px;
}

.texto p {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: #222;
}

.texto ul {
    list-style: none;
    margin-bottom: 32px;
}

.texto li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #111;
    transition: all 0.3s;
    cursor: pointer;
}

.texto li:hover {
    transform: translateX(8px);
    color: #f39c12;
}

.imagem-simbolica {
    flex: 1;
    text-align: center;
}

.icone-grande {
    font-size: 9rem;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(145deg, #f39c12, #e67e22);
    transition: all 0.4s;
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
}

.icone-grande:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 40px rgba(243, 156, 18, 0.3);
}

/* Lista de produtos interativa */
.produtos-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.produto-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eee;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.produto-card::after {
    content: '🔍 Clique para detalhes';
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    background: #f39c12;
    color: #111;
    font-size: 0.8rem;
    padding: 8px;
    transition: bottom 0.3s;
    font-weight: bold;
}

.produto-card:hover::after {
    bottom: 0;
}

.produto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #f39c12;
}

.produto-card img {
    width: 100%;
    max-height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.4s;
}

.produto-card:hover img {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.produto-icone {
    font-size: 3rem;
    margin-bottom: 16px;
    transition: transform 0.3s;
}

.produto-card:hover .produto-icone {
    transform: scale(1.1);
}

.produto-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #111;
}

.produto-card p {
    color: #666;
    margin-bottom: 16px;
}

.produto-status {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    transition: all 0.3s;
}

.produto-card:hover .produto-status {
    background: #f39c12;
    color: #111;
    transform: scale(1.05);
}

/* Galeria interativa */
.galeria {
    margin-top: 60px;
}

.galeria h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.galeria-item {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

.galeria-item::before {
    content: '🔍 Clique para ampliar';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    z-index: 2;
    transition: transform 0.3s;
    white-space: nowrap;
}

.galeria-item:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.galeria-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.galeria-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s;
}

.galeria-item:hover img {
    transform: scale(1.08);
}

/* Overlay da galeria */
.galeria-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 50px 15px 15px;
    transition: bottom 0.3s;
    text-align: center;
}

.galeria-item:hover .galeria-overlay {
    bottom: 0;
}

.galeria-overlay span {
    font-size: 0.9rem;
    font-weight: bold;
}

/* Rodapé */
footer {
    background: #1e3c72;
    color: #f0f0f0;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info {
    text-align: left;
}

.footer-info p {
    margin-bottom: 8px;
}

.contatos {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.contatos span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    cursor: pointer;
}

.contatos span:hover {
    color: #f39c12;
    transform: translateX(3px);
}

.social a {
    color: white;
    font-size: 1.5rem;
    margin-left: 20px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.social a:hover {
    color: #f39c12;
    transform: translateY(-3px) rotate(5deg);
}

/* Botão WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s;
}

.whatsapp-btn:hover img {
    transform: scale(1.1);
}

/* Modal e Lightbox (para compatibilidade) */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    padding: 30px;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.3s ease;
}

.modal-content img {
    max-width: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: all 0.3s;
}

.modal-close:hover {
    color: #f39c12;
    transform: rotate(90deg);
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: all 0.3s;
    cursor: pointer;
}

.lightbox-close:hover {
    color: #f39c12;
    transform: rotate(90deg);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
}

/* ======================== */
/* RESPONSIVIDADE COMPLETA  */
/* ======================== */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero h2 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .card {
        min-width: 220px;
    }
    
    .galeria-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Mobile grande (481px - 768px) */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .logo {
        flex-direction: column;
        text-align: center;
    }

    .logo-img {
        width: 45px;
        height: 45px;
        font-size: 22px;
        margin: 0 auto;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .logo h1 span {
        font-size: 0.9rem;
    }
    
    .logo-detalhe {
        font-size: 0.9rem;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    nav a {
        margin: 0 8px;
        font-size: 0.85rem;
    }

    .hero {
        padding: 50px 20px;
    }

    .hero-flex {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-texto {
        text-align: center;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.95rem;
    }
    
    .btn-principal {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .servicos h3 {
        font-size: 1.8rem;
    }
    
    .servicos {
        padding: 50px 0;
    }

    .card {
        min-width: 100%;
        padding: 24px 20px;
    }
    
    .card h4 {
        font-size: 1.3rem;
    }

    .conteudo-servico {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .icone-grande {
        width: 120px;
        height: 120px;
        font-size: 5rem;
    }
    
    .pag-servico h2 {
        font-size: 1.8rem;
    }
    
    .texto p {
        font-size: 1rem;
    }
    
    .texto li {
        font-size: 0.9rem;
    }

    .produtos-lista {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .produto-card {
        padding: 20px 15px;
    }
    
    .produto-card h4 {
        font-size: 1.1rem;
    }
    
    .produto-card p {
        font-size: 0.85rem;
    }

    .galeria h3 {
        font-size: 1.6rem;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .galeria-item img {
        height: 200px;
    }
    
    .galeria-item::before {
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .contato h3 {
        font-size: 1.8rem;
    }
    
    .contato p {
        font-size: 0.9rem;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

    .contatos {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .social {
        margin-top: 10px;
    }

    .social a {
        margin: 0 12px;
        font-size: 1.3rem;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn img {
        width: 28px;
        height: 28px;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
    }
    
    .modal-content h3 {
        font-size: 1.2rem;
    }
}
/* Ícones do rodapé */
.social a img {
    width: 24px;
    height: 24px;
    transition: all 0.3s;
    display: inline-block;
    vertical-align: middle;
}

.social a:hover img {
    transform: translateY(-3px) scale(1.1);
    filter: brightness(1.2);
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .social a img {
        width: 20px;
        height: 20px;
    }
}

/* Mobile pequeno (até 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    .servicos h3 {
        font-size: 1.5rem;
    }
    
    .card h4 {
        font-size: 1.2rem;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .pag-servico h2 {
        font-size: 1.5rem;
    }
    
    .icone-grande {
        width: 100px;
        height: 100px;
        font-size: 4rem;
    }
    
    .btn-card, .btn-principal {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
    
    .galeria-item::before {
        font-size: 0.6rem;
        padding: 4px 10px;
    }
    
    .produto-card::after {
        font-size: 0.7rem;
    }
    
    .contatos span {
        font-size: 0.8rem;
    }
    
    .social a {
        font-size: 1.1rem;
        margin: 0 8px;
    }
}

/* Landscape (orientação horizontal em mobile) */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 30px 20px;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    .card {
        min-width: 220px;
    }
    
    .cards {
        gap: 15px;
    }
    
    .produtos-lista {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

/* Telas muito grandes (desktop 1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
    
    .card {
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
}