* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Top */
.header-top {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

.top-nav a {
    color: #333;
    text-decoration: none;
}

.top-nav a:hover {
    color: #f7941d;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: #333;
    font-size: 18px;
}

.language a {
    color: #333;
}

/* Tracking Bar */
.tracking-bar {
    background: #f7941d;
    padding: 20px 0;
}

.tracking-bar > .container > label {
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    display: block;
    margin-bottom: 12px;
}

.tracking-form {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.tracking-field {
    flex: 1;
    min-width: 200px;
}

.tracking-field .field-label {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 5px;
}

.tracking-field .field-label .required {
    color: #ff0000;
    font-weight: bold;
}

.tracking-field input {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
}

.tracking-btn {
    background: #001e4f;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    height: 40px;
    transition: background 0.3s;
}

.tracking-btn:hover {
    background: #003070;
}

.campo-obrigatorio {
    display: block;
    color: #fff;
    font-size: 12px;
    margin-top: 8px;
    font-style: italic;
}

/* Main Nav */
.main-nav {
    background: #001e4f;
    padding: 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav .dropdown button {
    background: #f7941d;
    color: #fff;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 15px 0;
    display: inline-block;
}

.nav-links a:hover,
.nav-links a.active {
    color: #f7941d;
}

.nav-links .search-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

/* Hero Banner */
.hero-banner {
    background: url('images/image-1.jpeg') center/cover no-repeat;
    min-height: 400px;
    padding: 0;
    position: relative;
}

.hero-content {
    min-height: 400px;
}

.romilda img {
    max-width: 300px;
    height: auto;
}

.hero-text {
    color: #fff;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 25px;
}

.chat-btn {
    background: #f7941d;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
}

.chat-btn:hover {
    background: #e68a1a;
}

/* Quote Bar */
.quote-bar {
    background: #f7941d;
    padding: 20px 0;
}

.quote-bar .container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quote-bar label {
    color: #fff;
    font-weight: bold;
    white-space: nowrap;
}

.quote-bar input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
}

.quote-bar button {
    background: #001e4f;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

/* Services */
.services {
    padding: 60px 0;
    background: #f5f5f5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.service-card h3 {
    padding: 15px;
    font-size: 14px;
    text-align: center;
    color: #001e4f;
}

/* Content Section */
.content-section {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.news h2,
.video h2 {
    color: #001e4f;
    margin-bottom: 25px;
    font-size: 24px;
}

.news-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.news-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.news-item a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.news-item p {
    font-size: 14px;
    color: #666;
}

.read-more {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: #001e4f;
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #f7941d;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-col a:hover {
    color: #f7941d;
}

.footer-bottom {
    border-top: 1px solid #003366;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.romilda-footer {
    position: absolute;
    bottom: 0;
    right: 50px;
}

.romilda-footer img {
    max-width: 150px;
    height: auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header */
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .top-nav {
        flex-wrap: wrap;
        justify-content: center;
        font-size: 12px;
        gap: 8px;
    }
    
    .social-icons {
        order: 1;
        width: 100%;
        justify-content: center;
    }
    
    .language {
        order: 2;
    }
    
    /* Tracking Bar */
    .tracking-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .tracking-field {
        width: 100%;
    }
    
    .tracking-btn {
        width: 100%;
        height: auto;
        padding: 12px 30px;
    }
    
    .tracking-bar > .container > label {
        text-align: center;
    }
    
    .campo-obrigatorio {
        text-align: center;
    }
    
    /* Main Nav */
    .nav-content {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav .dropdown button {
        width: 100%;
        text-align: left;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        border-top: 1px solid #003366;
        padding: 12px 0;
    }
    
    /* Hero Banner */
    .hero-banner {
        min-height: 250px;
    }
    
    .hero-content {
        min-height: 250px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .romilda img {
        max-width: 200px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    /* Quote Bar */
    .quote-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .quote-bar label {
        text-align: center;
    }
    
    .quote-bar input {
        width: 100%;
    }
    
    .quote-bar button {
        width: 100%;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card img {
        height: 200px;
    }
    
    /* Content Section */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .news-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .news-item img {
        width: 100%;
        max-width: 200px;
        height: auto;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .romilda-footer {
        position: static;
        text-align: center;
        margin-top: 20px;
    }
    
    .romilda-footer img {
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    /* Header */
    .logo img {
        height: 35px;
    }
    
    .top-nav {
        font-size: 11px;
    }
    
    .social-icons a {
        font-size: 16px;
    }
    
    /* Hero */
    .hero-banner {
        min-height: 200px;
    }
    
    .hero-content {
        min-height: 200px;
    }
    
    .romilda img {
        max-width: 150px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .hero-text p {
        font-size: 14px;
    }
    
    .chat-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    /* Services */
    .service-card h3 {
        font-size: 13px;
        padding: 12px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-col h3 {
        font-size: 14px;
    }
    
    .footer-col a {
        font-size: 13px;
    }
}
