/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header com gradiente preto-azul-amarelo mantendo logo integrado */
.header {
    background: linear-gradient(90deg, #000000 0%, #1a237e 50%, #ffeb3b 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.8rem 0;
    position: relative;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

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

.logo img {
    height: 80px;
    width: auto;
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

.nav a:hover {
    color: #000;
    background: rgba(255, 255, 255, 0.9);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge span {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(45deg, #fff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #e3f2fd;
    font-weight: 400;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: #28a745;
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.cta-button.primary:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.hero-scroll span {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Seções gerais - REVISADO */
section {
    padding: 60px 0;
}

section .container {
    padding: 0 30px;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 600;
    line-height: 1.2;
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Sobre o Projeto - REVISADO */
.sobre {
    background: #f8f9fa;
}

.sobre p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.pilares {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pilar {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.pilar:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.pilar-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.pilar h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #007bff;
    font-weight: 600;
}

.pilar p {
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Atividades - REVISADO */
.atividades {
    background: white;
}

.atividade-destaque {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 1px solid #e9ecef;
}

.atividade-destaque h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #007bff;
    text-align: center;
    font-weight: 600;
}

.atividade-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.atividade-text ul {
    list-style: none;
    margin: 1.5rem 0;
}

.atividade-text li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.atividade-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

.atividade-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.atividade-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.producao-info {
    margin: 3rem 0;
    background: #e3f2fd;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
}

.producao-info p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.producao-info p:last-child {
    margin-bottom: 0;
}

/* Vídeo - REVISADO */
.video-section {
    margin: 4rem 0;
    text-align: center;
}

.video-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #007bff;
    font-weight: 600;
}

.video-container {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.video-container h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 600;
}

.video-container video {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: #000;
}

.video-description {
    margin-top: 1.5rem;
    color: #666;
    font-style: italic;
    font-size: 1rem;
}

.instalacoes-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.instalacao-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.instalacao-item:hover {
    transform: translateY(-8px);
}

.instalacao-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instalacao-item:hover img {
    transform: scale(1.05);
}

.instalacao-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.instalacao-item:hover .instalacao-overlay {
    transform: translateY(0);
}

.instalacao-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.instalacao-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .instalacoes-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .instalacao-overlay {
        transform: translateY(0);
        background: rgba(0,0,0,0.7);
    }
}

/* Capacitação - REVISADO */
.capacitacao {
    background: #f8f9fa;
}

.capacitacao h2 {
    margin-bottom: 1rem;
}

.capacitacao > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.equipe-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
    padding: 0 1rem;
}

.stat {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.stat .label {
    font-size: 1rem;
    color: #007bff;
    line-height: 1.4;
    word-wrap: break-word;
    hyphens: auto;
    text-align: center;
    max-width: 100%;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.stat .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    word-wrap: break-word;
    text-align: center;
    max-width: 100%;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .equipe-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .stat {
        padding: 2rem 1.5rem;
        min-height: 160px;
    }
    
    .stat .number {
        font-size: 1.6rem;
    }
    
    .stat .label {
        font-size: 0.95rem;
    }
}

/* Para telas muito pequenas */
@media (max-width: 480px) {
    .stat {
        padding: 1.5rem 1rem;
        min-height: 140px;
    }
    
    .stat .number {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .stat .label {
        font-size: 0.9rem;
        line-height: 1.3;
    }
}

.equipe-info {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 3rem;
    border: 1px solid #e9ecef;
    text-align: center;
}

.equipe-info ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.equipe-info li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1.05rem;
    line-height: 1.6;
}

.equipe-info li:last-child {
    border-bottom: none;
}

/* Impacto Social - REVISADO */
.impacto {
    background: white;
}

.impacto p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.quote-section {
    margin: 4rem 0;
    display: flex;
    justify-content: center;
}

.quote-box {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 3.5rem 3rem;
    border-radius: 20px;
    max-width: 800px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.3);
}

.quote-box::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 30px;
    color: rgba(255, 255, 255, 0.3);
    font-family: serif;
}

.quote-box blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    font-style: italic;
}

.quote-box cite {
    font-size: 1rem;
    font-weight: 600;
    color: #e3f2fd;
}

.parceria {
    background: #f8f9fa;
    padding: 3.5rem 3rem;
    border-radius: 15px;
    margin: 4rem 0;
    border: 1px solid #e9ecef;
}

.parceria h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #007bff;
    text-align: center;
    font-weight: 600;
}

.parceria p {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.parceria-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.parceria-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Galeria - REVISADO */
.galeria {
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

    .ponto-venda-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ponto-venda-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ponto-venda-badge {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}

/* Contato - REVISADO */
/* ========================================
   SEÇÃO ENTRE EM CONTATO - NOVO DESIGN
   ======================================== */

.contato {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.contato h2 {
    text-align: center;
    font-size: 2.8rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.contato .subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.contato-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.contato-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.contato-card.escritorio::before {
    background: #1e88e5;
}

.contato-card.operacional::before {
    background: #26a69a;
}

.contato-card.administrativo::before {
    background: #ffa726;
}

.contato-card.email::before {
    background: #ec407a;
}

.contato-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.contato-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.escritorio .contato-icon {
    background: #1e88e5;
}

.operacional .contato-icon {
    background: #26a69a;
}

.administrativo .contato-icon {
    background: #ffa726;
}

.email .contato-icon {
    background: #ec407a;
}

.contato-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.contato-location {
    font-size: 0.85rem;
    color: #1e88e5;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.operacional .contato-location {
    color: #26a69a;
}

.administrativo .contato-location {
    color: #ffa726;
}

.email .contato-location {
    color: #ec407a;
}

.contato-details {
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.6;
}

.detail-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    margin-top: 15px;
    font-size: 0.85rem;
    text-align: center;
}

.detail-label:first-child {
    margin-top: 0;
}

.detail-text {
    color: #555;
    margin-bottom: 0;
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.detail-text a {
    color: #1e88e5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}

.detail-text a:hover {
    color: #1565c0;
    text-decoration: underline;
}

.contato-cta {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.contato-cta h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.contato-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    text-transform: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.5);
    background: linear-gradient(135deg, #20c997, #28a745);
}

/* Responsividade */
@media (max-width: 1200px) {
    .contato-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contato {
        padding: 60px 0;
    }
    
    .contato h2 {
        font-size: 2.2rem;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contato-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }
    
    .contato-cta {
        padding: 40px 30px;
    }
    
    .contato-cta h3 {
        font-size: 1.6rem;
    }
    
    .cta-button {
        padding: 15px 40px;
        font-size: 1rem;
    }
}


.instagram-section {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.instagram-content {
    max-width: 600px;
    margin: 0 auto;
}

.instagram-icon {
    margin-bottom: 1.5rem;
}

.instagram-icon svg {
    stroke: white;
}

.instagram-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.instagram-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.instagram-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.instagram-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Footer - REVISADO */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-text {
    text-align: right;
}

.footer-text p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-text p:last-child {
    margin-bottom: 0;
}

/* Responsividade Geral - REVISADO */
@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .atividade-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .atividade-images {
        grid-template-columns: 1fr;
    }
    
    .parceria-images {
        grid-template-columns: 1fr;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contato-card {
        min-height: 280px;
        padding: 2rem 1.5rem;
    }
    
    .contato-card h3 {
        font-size: 1.2rem;
    }
    
    .contato-details {
        text-align: center;
    }
    
    .contato-details p {
        font-size: 0.9rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-text {
        text-align: center;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quote-box {
        padding: 2.5rem 2rem;
        margin: 0 1rem;
    }
    
    .quote-box blockquote {
        font-size: 1.1rem;
    }
    
    .instagram-section {
        padding: 50px 0;
    }
    
    .instagram-section h3 {
        font-size: 1.5rem;
    }
    
    .instagram-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }
    
    section .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .pilares {
        grid-template-columns: 1fr;
    }
    
    .pilar {
        padding: 2rem 1.5rem;
    }
}


/* Estilos para galeria dinâmica */
.gallery-loading {
    grid-column: 1/-1;
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
}

.gallery-loading p {
    margin: 0;
    font-size: 1.1rem;
}

/* Animação de loading */
.gallery-loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #667eea;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Melhorias para galeria responsiva */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        max-width: 100%;
    }
}



    
    .carvao-babacu h2,
    .lago-piscicultura h2 {
        font-size: 2rem;
    }
    
    .carvao-text h3,
    .lago-text h3 {
        font-size: 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        min-width: auto;
    }
}

/* ========================================
   SEÇÕES PADRONIZADAS: Ponto de Venda, Carvão e Lago
   ======================================== */

/* ----- PONTO DE VENDA SOCIAL ----- */
.ponto-venda {
    padding: 80px 0;
    background: white;
}

.ponto-venda h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.ponto-venda-hero {
    text-align: center;
    margin-bottom: 50px;
}

.ponto-venda-badge {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.ponto-venda-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
}

.ponto-venda-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.ponto-venda-text > p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.ponto-venda-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.ponto-venda-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.ponto-venda-image img:hover {
    transform: scale(1.03);
}

/* ----- CARVÃO DO COCO BABAÇU ----- */
.carvao-babacu {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.carvao-babacu h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.carvao-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.carvao-badge {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.carvao-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
}

.carvao-text h3 {
    font-size: 1.9rem;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 600;
}

.carvao-text > p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 40px;
}

.carvao-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.carvao-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.carvao-image img:hover {
    transform: scale(1.03);
}

/* ----- LAGO PARA PISCICULTURA ----- */
.lago-piscicultura {
    padding: 80px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.lago-piscicultura h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1565c0;
    margin-bottom: 30px;
    font-weight: 700;
}

.lago-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.lago-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1976d2, #2196f3);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.lago-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(25, 118, 210, 0.4);
}

.lago-text h3 {
    font-size: 1.9rem;
    color: #1565c0;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 600;
}

.lago-text > p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 40px;
}

.lago-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.lago-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.lago-image img:hover {
    transform: scale(1.03);
}

/* ----- FEATURE ITEMS PADRONIZADOS ----- */
.ponto-venda .feature-item,
.carvao-features .feature-item,
.lago-features .feature-item {
    text-align: center;
    padding: 25px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.ponto-venda .feature-item:hover,
.carvao-features .feature-item:hover,
.lago-features .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.ponto-venda .feature-icon,
.carvao-features .feature-icon,
.lago-features .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.ponto-venda .feature-item h4,
.carvao-features .feature-item h4,
.lago-features .feature-item h4 {
    font-size: 1.15rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.ponto-venda .feature-item p,
.carvao-features .feature-item p,
.lago-features .feature-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ----- RESPONSIVIDADE ----- */
@media (max-width: 968px) {
    .ponto-venda-content,
    .carvao-content,
    .lago-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ponto-venda-features {
        grid-template-columns: 1fr;
    }
    
    .ponto-venda h2,
    .carvao-babacu h2,
    .lago-piscicultura h2 {
        font-size: 2rem;
    }
    
    .carvao-text h3,
    .lago-text h3 {
        font-size: 1.6rem;
    }
    
    .ponto-venda-badge,
    .carvao-badge,
    .lago-badge {
        font-size: 1rem;
        padding: 10px 25px;
    }
}

/* ========================================
   SEÇÃO ENTRE EM CONTATO - NOVO DESIGN
   ======================================== */

.contato {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.contato h2 {
    text-align: center;
    font-size: 2.8rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.contato .subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.contato-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.contato-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.contato-card.escritorio::before {
    background: #1e88e5;
}

.contato-card.operacional::before {
    background: #26a69a;
}

.contato-card.administrativo::before {
    background: #ffa726;
}

.contato-card.email::before {
    background: #ec407a;
}

.contato-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.contato-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.escritorio .contato-icon {
    background: #1e88e5;
}

.operacional .contato-icon {
    background: #26a69a;
}

.administrativo .contato-icon {
    background: #ffa726;
}

.email .contato-icon {
    background: #ec407a;
}

.contato-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.contato-location {
    font-size: 0.85rem;
    color: #1e88e5;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.operacional .contato-location {
    color: #26a69a;
}

.administrativo .contato-location {
    color: #ffa726;
}

.email .contato-location {
    color: #ec407a;
}

.contato-details {
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.6;
}

.detail-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    margin-top: 15px;
    font-size: 0.85rem;
    text-align: center;
}

.detail-label:first-child {
    margin-top: 0;
}

.detail-text {
    color: #555;
    margin-bottom: 0;
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.detail-text a {
    color: #1e88e5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}

.detail-text a:hover {
    color: #1565c0;
    text-decoration: underline;
}

.contato-cta {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.contato-cta h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.contato-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    text-transform: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.5);
    background: linear-gradient(135deg, #20c997, #28a745);
}

/* Responsividade */
@media (max-width: 1200px) {
    .contato-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contato {
        padding: 60px 0;
    }
    
    .contato h2 {
        font-size: 2.2rem;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contato-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }
    
    .contato-cta {
        padding: 40px 30px;
    }
    
    .contato-cta h3 {
        font-size: 1.6rem;
    }
    
    .cta-button {
        padding: 15px 40px;
        font-size: 1rem;
    }
}

