/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding-top: 80px;
}

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

/* Header */
.header {
    background: #2a5298;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: brightness(1.2) contrast(1.1);
}

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.phone, .email {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.phone a, .email a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone a:hover, .email a:hover {
    color: #ffd700;
}

.phone i, .email i {
    color: #ffd700;
    font-size: 1.1rem;
    text-shadow: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 80px 0 60px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: #ffd700;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.feature i {
    color: #ffd700;
    font-size: 1.2rem;
    min-width: 20px;
}

/* Hero Form */
.hero-form {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form-container h3 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e3c72;
    font-size: 0.9rem;
}

.field-hint {
    display: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2a5298;
    box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
}

.contact-form input:invalid {
    border-color: #e74c3c;
}

.contact-form input:valid {
    border-color: #27ae60;
}

/* Mensagens do formulário */
.form-success, .form-error {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

.form-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #2a5298;
    color: white;
}

.btn-primary:hover {
    background: #1e3c72;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2a5298;
}

.urgency-box {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 40px auto;
    max-width: 600px;
    backdrop-filter: blur(10px);
}

.urgency-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffeb3b;
}

.urgency-box ul {
    list-style: none;
    text-align: left;
}

.urgency-box li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.urgency-box li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

.cta-section {
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255,107,53,0.3);
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255,107,53,0.4);
}

.guarantee {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #4caf50;
    font-weight: 500;
}

/* Produtos Section */
.produtos {
    padding: 80px 0;
    background: #f8f9fa;
}

.produtos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
    line-height: 1.2;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

.produto-tempero {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.produto-tempero h3 {
    text-align: center;
}

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

.produto-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
    line-height: 1.2;
}

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

/* Diferenciais Section */
.diferenciais {
    padding: 80px 0;
    background: white;
}

.diferenciais h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
    line-height: 1.2;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.diferencial {
    text-align: center;
    padding: 20px;
}

.diferencial-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.diferencial h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

/* Comparativo Section */
.comparativo {
    padding: 80px 0;
    background: #f8f9fa;
}

.comparativo h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
    line-height: 1.2;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: left;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: #2c3e50;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-header > div {
    padding: 20px;
    text-align: left;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #eee;
}

.comparison-row > div {
    padding: 20px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 60px;
}

.comparison-row:nth-child(even) {
    background: #f8f9fa;
}

.feature {
    text-align: left !important;
    font-weight: 500;
    justify-content: flex-start !important;
}

.refisa {
    color: #4caf50;
    font-weight: 600;
}

.others {
    color: #f44336;
}

/* Urgência Section */
.urgencia {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    text-align: center;
}

.urgencia h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.urgencia p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.action-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.number {
    background: white;
    color: #ff6b35;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Contact Info Section */
.contact-info-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-info-section .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-info-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-info-section .contact-item:hover {
    transform: translateY(-2px);
}

.contact-info-section .contact-item i {
    color: #2a5298;
    font-size: 1.5rem;
    min-width: 24px;
}

.contact-info-section .contact-item strong {
    color: #1e3c72;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-info-section .contact-item p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.contact-info-section .contact-item a {
    color: #2a5298;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-section .contact-item a:hover {
    color: #1e3c72;
    text-decoration: underline;
}

/* Contato Section */
.contato {
    padding: 80px 0;
    background: white;
}

.contato h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contato-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.contato-form {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a5298;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.btn-submit {
    width: 100%;
    background: #ff6b35;
    color: white;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #e55a2b;
}

.form-disclaimer {
    margin-top: 20px;
    font-size: 12px;
    color: #666;
    text-align: center;
}

/* Form Messages */
.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    min-height: 20px;
}

.form-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.form-info {
    background: #d1ecf1;
    color: #0c5460;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #bee5eb;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}



.footer-section h3 {
    margin-bottom: 20px;
    color: #3498db;
    font-size: 1rem;
}

.footer-section p {
    margin-bottom: 10px;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
    text-decoration: underline;
}

.whatsapp-link {
    color: #25d366 !important;
    font-weight: 600;
}

.whatsapp-link:hover {
    color: #128c7e !important;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

/* Empresa e Redes Sociais lado a lado */
.empresa-redes {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.empresa-links,
.redes-sociais {
    flex: 1;
}

/* Dados da Empresa */
.footer-company-data {
    background: #1a252f;
    padding: 20px 0;
    border-top: 1px solid #34495e;
}

.company-info {
    text-align: center;
    color: #bdc3c7;
}

.company-info p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.company-info strong {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

.mobile-only {
    display: none;
  }

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.85rem;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
        min-width: 120px;
    }
    
    .contact-info-section .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .header-contact {
        display: none;
    }
    
    .comparison-header {
        display: none; /* Esconde o cabeçalho no mobile */
    }
    .comparison-row {
        display: block;
        margin-bottom: 1.5rem;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        padding: 1rem;
        min-width: 0;
    }
    .comparison-row > .feature {
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 0.7rem;
        font-size: 1.05rem;
        text-align: center !important;
        justify-content: center !important;
    }
    .comparison-row > .refisa,
    .comparison-row > .others {
        display: inline-block;
        width: 48%;
        vertical-align: top;
        font-size: 0.98rem;
        padding: 0.5rem 0;
        text-align: center !important;
        box-sizing: border-box;
    }
    .comparison-row > .refisa .icon, 
    .comparison-row > .others .icon {
        display: inline;
        font-size: inherit;
        margin-bottom: 0;
        line-height: inherit;
        display: block;
        margin: 0 auto;
        text-align: center;
        font-size: 3rem;
    }
    .comparison-row > .refisa {
        color: #4caf50;
        font-weight: 600;
    }
    .comparison-row > .others {
        color: #f44336;
    }
    
    .point {
        flex-direction: column;
        text-align: center;
    }
    .number {
        text-align: center;
        margin: 0 auto;
    }
    .urgencia h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .mobile-only {
      display: block !important;
      font-size: 1.05rem;
      font-weight: 600;
      text-align: center;
      margin-bottom: 0.1rem;
      color: #2c3e50;
      letter-spacing: 0.02em;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 124px;
    }
    .hero {
        padding: 40px 0;
    }
    
    .hero-form {
        padding: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    .contact-info {
        font-size: 0.8rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.produto-card,
.diferencial {
    animation: fadeInUp 0.6s ease-out;
}

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Loading states */
.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}