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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #ff7f00 0%, #ff9500 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    height: 60px;
    /* Substitua pela sua logomarca */
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
}

.contact-info {
    text-align: right;
}

.contact-info p {
    margin: 0;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff7f00 0%, #ff9500 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: #ff7f00;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #ff7f00;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 127, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: #ff7f00;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

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

/* Infrastructure Section */
.infrastructure {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.infrastructure-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #ff7f00;
}

.infrastructure-item h4 {
    color: #ff7f00;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.infrastructure-item ul {
    list-style: none;
}

.infrastructure-item li {
    padding: 0.5rem 0;
    color: #666;
}

.infrastructure-item li:before {
    content: '✓';
    color: #ff7f00;
    font-weight: bold;
    margin-right: 10px;
}

/* Location Section */
.location {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.location-text {
    text-align: left;
}

.location-text h3 {
    color: #ff7f00;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.location-benefits {
    list-style: none;
    margin-top: 1.5rem;
}

.location-benefits li {
    padding: 0.5rem 0;
    color: #666;
}

.location-benefits li:before {
    content: '📍';
    margin-right: 10px;
}

.location-map {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ff7f00;
}

/* Contact Form Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ff7f00 0%, #ff9500 100%);
    color: white;
}

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

.contact-info-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-form h4 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

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

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

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

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

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

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

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

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-info {
        text-align: center;
    }
}

/* Language Selector */
.language-selector {
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.language-selector a {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.language-selector a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.language-selector a.active {
    background: rgba(255, 255, 255, 0.3);
    font-weight: bold;
}

.flag {
    width: 20px;
    height: 15px;
    margin-right: 5px;
    border-radius: 2px;
}