:root {
    --primary: #3a5a8c;
    --secondary: #1e7fad;
    --accent: #e63e6d;
    --neutral-light: #f9f7f5;
    --neutral-dark: #2d2d4a;
    --text: #2b2b2b;
    --text-light: #666666;
    --shadow: 0 8px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 12px 28px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --font-primary: 'Poppins', 'Segoe UI', sans-serif;
    --font-heading: 'Bebas Neue', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: var(--font-primary);
}

body {
    background-color: var(--neutral-light);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
}

/* NAVBAR MODERNA */
nav {
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    padding: 15px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--shadow);
    backdrop-filter: blur(5px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.site-title {
    color: white;
    font-size: 2rem;
    font-family: var(--font-heading);
    text-align: center;
    flex: 1;
    transition: var(--transition);
    letter-spacing: 1px;
}

.site-title:hover {
    color: #FFD700;
}

.logo img {
    width: 160px;
    height: 60px;
    object-fit: contain; /* Mantém a proporção */
}

.logo-text {
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
    margin-left: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
}

nav a {
    color: white;
    margin-left: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    padding: 8px 0;
}

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #FFD700;
    transition: var(--transition);
    opacity: 0.8;
}

nav a:hover:after {
    width: 100%;
}

nav a:hover {
    color: #FFD700;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* SESSÕES */
section {
    padding: 120px 5%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-title1 {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-title2 {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-title1 img {
    max-width: 100%;
    height: 160px;
}

.section-title2 img {
    max-width: 100%;
    height: 120px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 400px;
    height: 4px;
    background: #FFD700;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* INICIO HERO SECTION */
#inicio {
    background-color: #3a5a8c; /* Cor de fundo enquanto a imagem carrega */
    background-image: url("img/TB.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 150px rgba(0,0,0,0.1);
}

#inicio h1 {
    font-size: 4.2rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.25);
    font-family: var(--font-heading);
    letter-spacing: 2px;
    line-height: 1.1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

#inicio p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.cta-button {
    display: inline-block;
    margin-top: 35px;
    padding: 14px 34px;
    background: var(--accent);
    color: white;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: var(--shadow);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    background: #f04b7a;
}

/* SOBRE */
#sobre {
    padding: 80px 20px;
    background-color: white;
    position: relative;
}

#sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="1" fill="%23f0f0f0"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.sobre-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* CONTAINER DO LADO ESQUERDO (imagem + destaques) */
.sobre-left {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 30px; /* Espaço entre imagem e destaques */
}

.sobre-img {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.sobre-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    filter: saturate(1.05);
    border: 6px solid #0A2E73;
}

.sobre-img:hover img {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

/* CONTEÚDO DO LADO DIREITO */
.sobre-content {
    flex: 0 0 45%;
    text-align: left;
}

.sobre-content h2 {
    color: #0A2E73;
    margin-bottom: 20px;
    font-size: 2rem;
}

.sobre-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

/* DESTAQUES - AGORA NO LADO ESQUERDO */
.destaques {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.destaque-item {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 15px;
    padding: 15px;
    background: rgba(58, 90, 140, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.destaque-item:hover {
    background: rgba(58, 90, 140, 0.1);
    transform: translateX(5px);
}

.destaque-item i {
    font-size: 1.8rem;
    color: #0A2E73;
    background: rgba(58, 90, 140, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    flex-shrink: 0;
}

.destaque-item:hover i {
    transform: translateY(-3px);
    background: rgba(58, 90, 140, 0.15);
    color: var(--secondary);
}

.destaque-item h3 {
    color: #0A2E73;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.destaque-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* PRODUTOS */
#produtos {
    background-color: var(--neutral-light);
    position: relative;
}

#produtos::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(255,255,255,0.8), transparent);
    pointer-events: none;
    z-index: 1;
}

.produtos-container {
    max-width: 1200px;
    margin: 0 auto;
}

.categorias {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.categoria-btn {
    padding: 10px 24px;
    background: white;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.categoria-btn.active, 
.categoria-btn:hover {
    background: #0A2E73;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(58, 90, 140, 0.2);
}

/* GRID DE PRODUTOS COM 3 COLUNAS FIXAS */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}

/* PRODUTO NORMAL */
.produto {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
}

.produto:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0,0,0,0.08);
}

.produto-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.produto-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 70%, rgba(0,0,0,0.05));
    z-index: 1;
    pointer-events: none;
}

.produto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: saturate(1.05) brightness(1.02);
}

.produto:hover img {
    transform: scale(1.08);
}

.produto-info {
    padding: 20px 15px;
    position: relative;
    z-index: 2;
}

.produto-titulo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #0A2E73;
}

.produto-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.produto-preco {
    font-weight: bold;
    color: var(--accent);
    display: block;
    margin-top: 10px;
}

/* PRODUTO DESTAQUE */
.produto.destaque {
    grid-column: span 3;
    text-align: center;
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Adiciona espaçamento entre elementos */
    padding: 15px; /* Adiciona padding interno */
}

@media (max-width: 768px) {
    .produto.destaque {
        width: 95%; /* Aumenta a largura em dispositivos móveis */
        padding: 10px;
        gap: 15px;
    }
}

.produto.destaque .produto-img {
    height: auto;
    max-height: none;
    overflow: visible;
}

.produto.destaque img {
    transform: scale(1);
    transition: transform 0.3s ease;
    object-fit: contain;
    width: 100%;
    height: auto;
}

.produto.destaque:hover img {
    transform: scale(1.03);
}

.produto.destaque .produto-titulo {
    font-size: 2.2rem;
    letter-spacing: 1.5px;
}

.produto.destaque .produto-info {
    padding: 30px 20px;
    margin-top: 20px;
}

.produto.destaque .produto-desc {
    font-size: 1.2rem;
    max-width: 80%;
    margin: 15px auto;
}

/* CONTATO */
#contato {
    background-color: #3a5a8c; /* Cor de fundo enquanto a imagem carrega */
    background-image: url("img/TB.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    text-align: center;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

#contato .section-title {
    color: white;
}

.contato-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contato-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.contato-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contato-item i {
    font-size: 1.6rem;
    margin-right: 18px;
    color: #FFD700;
    background: rgba(255, 255, 255, 0.15);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.contato-item:hover i {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}

/* Estilos para o mapa */
.mapa-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mapa {
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.rota-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
    margin-top: 10px;
    align-self: center;
}

.rota-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(120deg, var(--secondary), var(--primary));
}

.rota-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.botoes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 5;
}

.botoes a {
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    letter-spacing: 0.3px;
}

.zap{
    background: white;
    color: #25D366;
}
.inst{
    background: white;
    color: #E1306C;
}
.tele{
    background: white;
    color: #0088cc;
}
.botoes a i {
    margin-right: 12px;
    font-size: 1.2rem;
}

.zap:hover {
    background: #25D366;
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.inst:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.tele:hover {
    background: #0088cc;
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Botão Ver Mais do Catálogo */
.ver-mais-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    position: relative;
    z-index: 5;
}

.ver-mais-btn {
    padding: 14px 30px;
    background: #0A2E73;
    color: white;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    letter-spacing: 0.3px;
}

.ver-mais-btn i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.ver-mais-btn:hover {
    background: var(--secondary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Responsividade para o botão Ver Mais */
@media (max-width: 768px) {
    .ver-mais-container {
        margin-top: 30px;
    }
    
    .ver-mais-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .ver-mais-container {
        margin-top: 25px;
    }
    
    .ver-mais-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* FOOTER */
footer {
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    color: white;
    padding: 40px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.copyright {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

/* RESPONSIVIDADE */
@media (max-width: 1200px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    #inicio h1 {
        font-size: 3.4rem;
    }
}

@media (max-width: 992px) {
    #inicio h1 {
        font-size: 3rem;
        letter-spacing: -0.3px;
    }
    
    #inicio p {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }
    
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .produto.destaque {
        grid-column: span 2;
    }

    .produto.destaque .produto-img {
        height: 320px;
    }

    .produto.destaque img {
        transform: scale(1.2);
    }

    .produto.destaque .produto-titulo {
        font-size: 1.7rem;
    }

    .produto.destaque .produto-desc {
        font-size: 1.05rem;
    }
    
    .sobre-container {
        gap: 40px;
    }
    
    .contato-container {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-container {
        flex-wrap: wrap;
    }
    
    .site-title {
        order: 1;
        width: 100%;
        flex: 0 0 100%;
        text-align: center;
        margin: 10px 0;
        font-size: 1.5rem;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: var(--transition);
        box-shadow: var(--shadow);
        z-index: 1000;
        display: flex;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    nav a {
        margin: 15px 0;
        font-size: 1.2rem;
        padding: 10px 0;
    }
    
    nav a:after {
        bottom: 5px;
    }
    
    #inicio h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    #inicio p {
        font-size: 1.15rem;
        padding: 0 15px;
    }
    
    .destaques {
        flex-direction: column;
        gap: 35px;
        align-items: center;
    }
    
    .destaque-item {
        max-width: 300px;
    }
    
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .produto.destaque {
        grid-column: span 2;
    }

    .produto.destaque .produto-img {
        height: 280px;
    }
    
    .botoes {
        flex-direction: column;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .botoes a {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    section {
        padding: 80px 5%;
    }
    
    #inicio h1 {
        font-size: 2.2rem;
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.9rem;
        margin-bottom: 40px;
    }
    
    .section-title:after {
        width: 80px;
        height: 3px;
    }
    
    .sobre-img, .sobre-content {
        min-width: 100%;
    }
    
    .categorias {
        gap: 8px;
        margin-bottom: 25px;
    }
    
    .categoria-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .produto.destaque {
        grid-column: span 1;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .produto.destaque .produto-img {
        height: auto;
        max-height: none;
        overflow: visible;
    }

    .produto.destaque img {
        transform: scale(1);
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .produto.destaque .produto-info {
        padding: 15px 10px;
        margin-top: 10px;
    }

    .produto.destaque .produto-titulo {
        font-size: 1.5rem;
    }

    .produto.destaque .produto-desc {
        font-size: 0.95rem;
        max-width: 100%;
        margin: 10px auto;
    }
    
    .contato-item {
        margin-bottom: 25px;
    }
    
    .contato-item i {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
}

/* Ajuste para tablets */
@media (max-width: 1024px) {
    .logo img {
        width: 140px;
        height: auto;
    }
    
    .nav-container {
        padding: 0 10px;
    }
}

/* Ajuste para celulares */
@media (max-width: 768px) {
    .logo img {
        width: 120px;
        height: auto;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
    
    .menu-toggle {
        font-size: 1.6rem;
    }
    
    /* Ajustes para produtos em destaque em dispositivos móveis */
    .produto.destaque {
        width: 95%;
        margin: 0 auto;
    }
    
    .produto.destaque .produto-img {
        height: auto;
        max-height: none;
        margin-bottom: 15px;
    }
    
    .produto.destaque img {
        width: 100%;
        height: auto;
        max-height: 350px;
        object-fit: contain;
    }
    
    .produto.destaque .produto-info {
        position: relative;
        padding: 15px 10px;
        margin-top: 0;
        background-color: var(--neutral-light);
        z-index: 2;
    }
}

/* Ajuste para telas muito pequenas */
@media (max-width: 480px) {
    .site-title {
        font-size: 1.3rem;
        margin: 5px 0;
    }
    
    .logo img {
        width: 120px;
        height: 45px;
    }
    
    .logo-text {
        font-size: 1.1rem;
        margin-left: 5px;
    }
    
    .logo img {
        width: 120px;
        height: 45px;
    }
    
    .produto-img {
        height: 200px;
    }
    
    .contato-container {
        padding: 0 10px;
    }
    
    .produto.destaque {
        width: 100%;
        margin: 0 auto;
    }
    
    .produto.destaque .produto-img {
        height: auto;
        max-height: none;
        margin-bottom: 10px;
    }
    
    .produto.destaque img {
        max-height: 250px;
        width: 100%;
        object-fit: contain;
    }
    
    .produto.destaque .produto-info {
        padding: 10px 5px;
        position: relative;
        background-color: var(--neutral-light);
        z-index: 2;
        margin-top: 0;
    }
    
    .produto.destaque .produto-desc {
        max-width: 100%;
        margin: 5px auto;
    }
}

/* Responsividade para telas menores */
@media (max-width: 968px) {
    .sobre-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .sobre-img,
    .sobre-content {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
    
    .sobre-img {
        justify-content: center;
    }
    
    .sobre-img img {
        width: 80%;
        max-width: 400px;
    }
    
    .destaques {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .destaque-item {
        width: 100%;
        max-width: 250px;
    }
}

/* RESPONSIVIDADE - TABLET */
@media (max-width: 992px) {
    .sobre-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .sobre-left, .sobre-content {
        flex: 0 0 100%;
    }
    
    .destaques {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .destaque-item {
        flex: 1;
        min-width: 200px;
        flex-direction: column;
        text-align: center;
        margin-bottom: 15px;
    }
}

/* RESPONSIVIDADE - CELULAR (até 576px) */
@media (max-width: 576px) {
    #sobre {
        padding: 40px 15px;
    }
    
    .sobre-container {
        gap: 25px;
    }
    
    .sobre-img img {
        border-width: 4px;
    }
    
    .sobre-content h2 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }
    
    .sobre-content p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .destaques {
        flex-direction: column;
        gap: 15px;
    }
    
    .destaque-item {
        min-width: 100%;
        flex-direction: row;
        text-align: left;
        padding: 12px;
        margin-bottom: 0;
    }
    
    .destaque-item i {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .destaque-item h3 {
        font-size: 1.1rem;
    }
    
    .destaque-item p {
        font-size: 0.85rem;
    }
}

/* RESPONSIVIDADE EXTRA PEQUENA (até 400px) */
@media (max-width: 400px) {
    .destaque-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .destaque-item i {
        margin: 0 auto;
    }
    
    .sobre-content h2 {
        font-size: 1.5rem;
    }
    
    .sobre-content p {
        font-size: 0.9rem;
    }
}