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

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

/* Header */
.header {
    background-color: #003366;
    color: white;
    padding: 12px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

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

.logo {
    display: flex;
    align-items: center;
    height: 40px;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    background: transparent;
}

.separator {
    width: 1px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.3);
}

.main-nav {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    text-decoration: underline;
}

.arrow {
    font-size: 10px;
}

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

.search-box {
    display: flex;
    align-items: center;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 6px 12px;
}

.search-icon {
    margin-right: 8px;
    color: #666;
}

.search-input {
    border: none;
    outline: none;
    font-size: 14px;
    width: 200px;
}

.login-btn {
    background-color: #0066CC;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-btn:hover {
    background-color: #0052a3;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 10px 40px 0;
    color: white;
    font-size: 13px;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    line-height: 1.2;
    margin-bottom: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0066CC 0%, #004d99 100%);
    color: white;
    padding: 0 40px 0;
    position: relative;
    min-height: 600px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    padding: 20px 0 0;
    min-height: 550px;
}

.hero-content {
    flex: 1;
    align-self: center;
    max-width: 550px;
}

.hero-title {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.hero-cta-button {
    background-color: white;
    color: #0066CC;
    border: 2px solid white;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.hero-cta-button:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 550px;
    min-height: 550px;
    max-width: 500px;
}

.hero-woman-img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom center;
    display: block;
}


.accessibility-icon {
    position: absolute;
    top: 20px;
    right: 40px;
    width: 40px;
    height: 40px;
    background-color: #0066CC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 3;
}

.accessibility-icon:hover {
    background-color: #0052a3;
}

.accessibility-icon svg {
    width: 24px;
    height: 24px;
}

.search-icon svg,
.lock-icon svg {
    display: block;
}

/* Sub Navigation / Tabs */
.sub-nav {
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 0 40px;
}

.sub-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.tab-link {
    padding: 20px 10px;
    text-decoration: none;
    color: #666;
    font-size: 15px;
    position: relative;
    transition: color 0.3s;
}

.tab-link:hover {
    color: #0066CC;
}

.tab-link.active {
    color: #0066CC;
    font-weight: 600;
}

.tab-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #0066CC;
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: #f8f9fa;
    min-height: 600px;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #0066CC;
    margin-bottom: 30px;
}

.subsection-title {
    font-size: 24px;
    font-weight: bold;
    color: #003366;
    margin-bottom: 15px;
}

.section-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.content-icon {
    width: 50px;
    height: 50px;
    background-color: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.content-icon svg {
    width: 24px;
    height: 24px;
}

.content-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    flex: 1;
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.advantage-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff5e6;
}

.advantage-icon.orange {
    background-color: #fff5e6;
}

.advantage-icon svg {
    width: 32px;
    height: 32px;
}

.advantage-title {
    font-size: 24px;
    font-weight: bold;
    color: #0066CC;
    margin: 0;
}

.advantage-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.cta-container {
    text-align: center;
    margin-top: 50px;
}

.cta-button {
    background-color: white;
    color: #0066CC;
    border: 2px solid #0066CC;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #0066CC;
    color: white;
}

/* Steps Section */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 64px;
    font-weight: bold;
    color: #FF6600;
    line-height: 1;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 24px;
    font-weight: bold;
    color: #003366;
    margin-bottom: 15px;
}

.step-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.link-text {
    color: #0066CC;
    text-decoration: underline;
}

.link-text:hover {
    color: #004d99;
}

/* Como Contratar Section */
.contratar-header {
    background-color: #e3f2fd;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contratar-header .section-title {
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: #555;
}

.contratar-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contratar-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contratar-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.contratar-step .step-number {
    font-size: 64px;
}

.contratar-step .step-content {
    flex: 1;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.step-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.step-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0066CC;
    font-weight: bold;
    font-size: 20px;
}

.condicoes-box {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.condicoes-title {
    font-size: 22px;
    font-weight: bold;
    color: #003366;
    margin-bottom: 20px;
}

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

.condicoes-list li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    border-bottom: 1px solid #f0f0f0;
}

.condicoes-list li:last-child {
    border-bottom: none;
}

.condicoes-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0066CC;
    font-weight: bold;
    font-size: 20px;
}


/* Footer */
.footer {
    background-color: #003366;
    color: white;
    padding: 60px 40px 20px;
    margin-top: 60px;
}

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

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

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #FFD700;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-disclaimer {
    margin-top: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Documents Table */
.documents-table-container {
    margin-top: 30px;
    overflow-x: auto;
}

.documents-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.documents-table thead {
    background-color: #0066CC;
    color: white;
}

.documents-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
}

.documents-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    color: #555;
}

.documents-table tbody tr:hover {
    background-color: #f5f5f5;
}

.documents-table tbody tr:last-child td {
    border-bottom: none;
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
    .contratar-layout {
        grid-template-columns: 1fr;
    }
    
    .condicoes-box {
        position: static;
    }
    
    .hero-container {
        flex-direction: column;
    }
    
    .hero-woman-img {
        max-height: 400px;
    }
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-right: 15px;
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
}

.login-text-desktop {
    display: inline;
}

.login-text-mobile {
    display: none;
}

.mobile-login-btn {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px;
    }
    
    .header-left {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        flex: 1;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .separator {
        display: none;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #003366;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        z-index: 1000;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .header-right {
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }
    
    .search-box {
        display: none;
    }
    
    .login-text-desktop {
        display: none;
    }
    
    .login-text-mobile {
        display: inline;
    }
    
    .login-btn {
        padding: 8px 15px;
        font-size: 14px;
        min-width: auto;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .breadcrumbs {
        padding: 8px 20px 0;
        font-size: 12px;
        line-height: 1.2;
        margin-bottom: 0;
    }
    
    .hero {
        padding: 0;
        min-height: auto;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    
    .hero-content {
        text-align: center;
        padding: 15px 20px;
    }
    
    .hero-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .hero-description {
        text-align: center;
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .hero-cta-button {
        margin: 0 auto;
        padding: 12px 25px;
        font-size: 15px;
    }
    
    .hero-image {
        height: 250px;
        min-height: 250px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-woman-img {
        height: 100%;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        object-position: center center;
    }
    
    .accessibility-icon {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
    
    .sub-nav {
        padding: 0 20px;
    }
    
    .sub-nav-container {
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 15px;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-link {
        padding: 15px 8px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .main-content {
        padding: 40px 20px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-item {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .step-number {
        font-size: 48px;
    }
    
    .contratar-step {
        flex-direction: column;
        gap: 15px;
    }
    
    .contratar-step .step-number {
        font-size: 48px;
    }
    
    .contratar-header {
        padding: 30px 20px;
    }
    
    .footer {
        padding: 40px 20px 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .logo-img {
        height: 35px;
    }
}

/* Responsive Design - Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .step-number {
        font-size: 40px;
    }
    
    .contratar-step .step-number {
        font-size: 40px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .main-nav {
        flex-direction: column;
        gap: 10px;
    }
}

