:root {
    --primary-color: #2f3640;
    --secondary-color: #4CAF50;
    --accent-color: #ff4d4d;
    --background-color: #8e9a64;
    --text-light: #ffffff;
    --text-dark: #333333;
    --shadow-standard: 0px 4px 10px rgba(0, 0, 0, 0.3);
    --transition-standard: all 0.3s ease-in-out;
    --border-radius: 15px;
    --spacing-standard: 20px;
    --gold-color: #FFD700;
    --red-color: #E31837;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('../img/pães.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow-x: hidden;
}

.header {
    background: linear-gradient(135deg, var(--gold-color), #f0c419);
    padding: 15px 40px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-standard);
    height: 80px;
    backdrop-filter: blur(10px);
}

.logo {
    width: auto;
    height: 45px;
    object-fit: contain;
    transition: var(--transition-standard);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-section {
    display: flex;
    align-items: center;
    margin-left: 60px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition-standard);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--red-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--red-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #388e3c);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    border: none;
    font-size: 16px;
    transition: var(--transition-standard);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #388e3c, #2e7d32);
}

.join-button {
    background-color: #E31837;
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    border: none;
    font-size: 16px;
    transition: var(--transition-standard);
    cursor: pointer;
}

.join-button:hover {
    background-color: #c41230;
    transform: translateY(-2px);
}

.main-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 80px;
    position: relative;
}

.contact-wrapper {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 40px;
    max-width: 1200px;
    width: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideInUp 0.8s ease-out;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    color: var(--red-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
}

.contact-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--red-color), var(--gold-color));
    border-radius: 2px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.company-info {
    padding: 30px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.company-info h4 {
    color: var(--red-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: var(--transition-standard);
    border-left: 4px solid var(--gold-color);
}

.info-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-item i {
    color: var(--red-color);
    font-size: 1.2rem;
    margin-right: 15px;
    min-width: 20px;
}

.info-item h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
}

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

.info-item a {
    color: var(--red-color);
    text-decoration: none;
    transition: var(--transition-standard);
}

.info-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    padding: 30px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h4 {
    color: var(--red-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.form-label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-color);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.06),
        0 0 0 4px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

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

.btn-submit {
    background: linear-gradient(135deg, var(--red-color), #c41230);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(227, 24, 55, 0.3);
    width: 100%;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #c41230, #a00f28);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(227, 24, 55, 0.4);
}

.social-section {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    margin-bottom: 30px;
}

.social-section h5 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    color: white;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcb045);
    color: white;
}

.social-btn.tiktok {
    background: linear-gradient(135deg, #000000, #ff0050);
    color: white;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.find-products-section {
    text-align: center;
}

.btn-find-products {
    background: linear-gradient(135deg, var(--secondary-color), #388e3c);
    color: white;
    padding: 16px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.btn-find-products:hover {
    background: linear-gradient(135deg, #388e3c, #2e7d32);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
    color: white;
    text-decoration: none;
}

.footer {
    background: linear-gradient(135deg, var(--gold-color), #f0c419);
    padding: 1rem 2rem;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    transition: var(--transition-standard);
    margin-right: 20px;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: var(--red-color);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: var(--red-color);
}

.footer-copyright {
    color: #333;
    font-weight: 500;
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-wrapper {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .contact-header h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .header {
        padding: 15px 20px;
        height: auto;
        flex-wrap: wrap;
    }
    
    .nav-section {
        margin-left: 20px;
    }

    .header-right {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }

    .main-container {
        padding: 120px 20px 80px;
    }

    .social-links {
        gap: 15px;
    }

    .social-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact-header h1 {
        font-size: 1.8rem;
    }
    
    .contact-wrapper {
        padding: 25px 15px;
    }
    
    .company-info, .contact-form {
        padding: 20px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .info-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
}