* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}
.toast.show {
  opacity: 1;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    /* Remover estilização de texto para não interferir na imagem */
    font-size: 0;
}

.logo-img {
    height: 50px; /* ajuste conforme a proporção da sua logo */
    width: auto;
    display: block;
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FF8C00;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF8C00 0%, #FFD700 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
}

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

.hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-text .subtitle {
    font-size: 1.5rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero-text .description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.cta-button {
    background: white;
    color: #FF8C00;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
}

.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hero-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.hero-card .icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Section Styles */
.section {
    padding: 80px 20px;
}

.section.gray {
    background: #f8f9fa;
}

.section.dark {
    background: #1a1a1a;
    color: white;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.section.dark .section-header h2 {
    color: white;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section.dark .section-header p {
    color: #ccc;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    background: #FFF3E0;
    color: #FF8C00;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    color: #666;
}

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

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FF8C00;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}
.about-image {
  margin-top: 40px;
  text-align: center;
}

.about-image img {
  width: 80%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    background: #f0f0f0;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    border: 2px solid #e0e0e0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-image:hover img {
    transform: scale(1.05);
}

.product-image::before {
    content: "Imagem do Produto";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #999;
    font-size: 0.9rem;
    text-align: center;
    z-index: 1;
}

.product-image.has-image::before {
    display: none;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.product-card .subtitle {
    color: #666;
    margin-bottom: 20px;
}

.product-list {
    list-style: none;
}

.product-list li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.product-list li:before {
    content: "•";
    color: #FF8C00;
    position: absolute;
    left: 0;
}

/* Aplicações Section */
.aplicacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.aplicacao-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.aplicacao-card:hover {
    transform: translateY(-5px);
}

.aplicacao-image {
    width: 100%;
    height: 180px;
    background: #f0f0f0;
    border-radius: 12px;
    margin: 0 auto 20px;
    overflow: hidden;
    position: relative;
    border: 2px solid #e0e0e0;
}

.aplicacao-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.aplicacao-image:hover img {
    transform: scale(1.05);
}

.aplicacao-image::before {
    content: "Imagem da Aplicação";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #999;
    font-size: 0.9rem;
    text-align: center;
    z-index: 1;
}

.aplicacao-image.has-image::before {
    display: none;
}

.aplicacao-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.aplicacao-card p {
    color: #666;
    line-height: 1.6;
}

/* Estilos para a seção Pantanal */
.pantanal-header {
    text-align: center;
    margin-bottom: 60px;
}

.pantanal-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.granblock-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 12px;
}

.logo-icon {
    font-size: 21px;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #FF8C00;
}

.comagran-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.comagran-logo img {
  height: 160px; /* ou maior, se necessário */
  width: auto;
}


.comagran-title {
    font-size: 56px;
    font-weight: bold;
    color: #1E3A8A;
}

.comagran-subtitle {
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
}

.pantanal-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.pantanal-icon {
    font-size: 32px;
}

.pantanal-title h2 {
    font-size: 2.5rem;
    color: #333;
    margin: 0;
}

.pantanal-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.pantanal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.pantanal-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.pantanal-card:hover {
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.card-icon.green {
    background: #10B981;
}

.card-icon.blue {
    background: #3B82F6;
}

.card-title h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #333;
}

.card-title p {
    color: #666;
    font-size: 0.9rem;
}

.card-list {
    list-style: none;
    padding: 0;
}

.card-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.solucoes-pantanal {
    background: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
    border-radius: 20px;
    padding: 40px;
    color: white;
    text-align: center;
}

.solucoes-pantanal h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.solucoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solucao-item {
    text-align: center;
}

.solucao-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.solucao-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.solucao-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Estilos para a seção Vantagens */
.vantagens-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.vantagens-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.star-icon {
    font-size: 32px;
}

.vantagens-title h2 {
    font-size: 2.5rem;
    color: #333;
    margin: 0;
}

.granblock-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: bold;
    color: #FF8C00;
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.vantagem-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.vantagem-card:hover {
    transform: translateY(-5px);
}

.vantagem-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.vantagem-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.vantagem-icon.blue {
    background: #3B82F6;
}

.vantagem-icon.green {
    background: #10B981;
}

.vantagem-icon.orange {
    background: #F59E0B;
}

.vantagem-icon.purple {
    background: #8B5CF6;
}

.vantagem-title h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #333;
}

.vantagem-title p {
    color: #666;
    font-size: 0.9rem;
}

.vantagem-list {
    list-style: none;
    padding: 0;
}

.vantagem-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.comparativo-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.comparativo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.comparativo-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.comparativo-icon {
    font-size: 24px;
}

.comparativo-header h4 {
    font-size: 1.2rem;
    color: #333;
}

.resistencia-bars {
    space-y: 15px;
}

.resistencia-item {
    margin-bottom: 15px;
}

.material-name {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #666;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-fill.green {
    background: #10B981;
}

.progress-fill.orange {
    background: #F59E0B;
}

.progress-fill.red {
    background: #EF4444;
}

.versatilidade-list,
.economia-list {
    list-style: none;
    padding: 0;
}

.versatilidade-list li,
.economia-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #666;
}

/* Diferenciais Section */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.diferencial {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    transition: transform 0.3s;
}

.diferencial-conteudo {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.diferencial-conteudo p {
    margin-top: auto;
    line-height: 1.6;
    color: #666;
}


/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: white;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #FF8C00;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.contact-details p {
    color: #ccc;
    line-height: 1.5;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: white;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #444;
    border-radius: 8px;
    background: #2a2a2a;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-input::placeholder {
    color: #888;
}

.form-input:focus {
    outline: none;
    border-color: #FF8C00;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    background: #FF8C00;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
}

.submit-button:hover {
    background: #e67e00;
}

.submit-button:disabled {
    background: #666;
    cursor: not-allowed;
}

.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Footer */
.footer {
    background: #2a2a2a;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FF8C00;
    margin-bottom: 15px;
}

.footer p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer .copyright {
    color: #888;
    font-size: 0.9rem;
}

/* Thank You Page Styles */
.thank-you-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF8C00 0%, #FFD700 100%);
    padding: 20px;
}

.thank-you-card {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    max-width: 600px;
    width: 100%;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 36px;
    color: white;
}

.thank-you-card h1 {
    color: #FF8C00;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thank-you-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.back-button {
    background: #FF8C00;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.back-button:hover {
    background: #e67e00;
    transform: translateY(-2px);
}

/* Icons using Unicode symbols */
.icon-shield:before { content: "🛡️"; }
.icon-zap:before { content: "⚡"; }
.icon-building:before { content: "🏢"; }
.icon-tree:before { content: "🌳"; }
.icon-hammer:before { content: "🔨"; }
.icon-leaf:before { content: "🍃"; }
.icon-users:before { content: "👥"; }
.icon-phone:before { content: "📞"; }
.icon-map:before { content: "📍"; }
.icon-clock:before { content: "🕐"; }

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-cards {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .pantanal-logos {
        flex-direction: column;
        gap: 20px;
    }
    
    .pantanal-grid {
        grid-template-columns: 1fr;
    }
    
    .solucoes-grid {
        grid-template-columns: 1fr;
    }
    
    .vantagens-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .vantagens-grid {
        grid-template-columns: 1fr;
    }
    
    .comparativo-grid {
        grid-template-columns: 1fr;
    }
    
    .pantanal-title {
        flex-direction: column;
        gap: 10px;
    }
    
    .pantanal-title h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .vantagens-title h2 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .thank-you-card {
        padding: 40px 20px;
    }

    .thank-you-card h1 {
        font-size: 2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for loading states */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading::after {
    content: "";
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-left: 10px;
}