/* Estilo principal do site Tele Táxi Cidade */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'Libre Franklin', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background-image: url('../images/header.jpg');
    background-size: cover;
    background-position: center;
    padding: 20px 0;
    position: relative;
}

.header-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo {
    max-width: 300px;
    height: auto;
}

/* Navegação */
nav {
    background-color: #f8f8f8;
    border-bottom: 1px solid #e7e7e7;
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-item {
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: background-color 0.3s;
    border-radius: 4px;
    margin: 0 5px;
}

.nav-item:hover, .nav-item.active {
    background-color: #e7e7e7;
}

/* Conteúdo principal */
main {
    padding: 40px 0;
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
}

.page-title h1 {
    font-size: 2.5rem;
    color: #444;
    margin-bottom: 10px;
}

.page-title h2 {
    font-size: 1.8rem;
    color: #666;
    font-weight: normal;
}

/* Seções */
.section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 1.8rem;
    color: #444;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e7e7e7;
}

.section-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.section-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Cards */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}

.card {
    flex: 1;
    min-width: 250px;
    margin: 15px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card-icon {
    text-align: center;
    margin-bottom: 15px;
}

.card-icon img {
    max-width: 60px;
    height: auto;
}

.card-title {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 10px;
    text-align: center;
}

.card-content {
    font-size: 0.9rem;
}

/* Lista de cidades */
.cities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -10px;
}

.city-column {
    flex: 1;
    min-width: 200px;
    margin: 0 10px;
}

.city-column ul {
    list-style-type: none;
}

.city-column li {
    padding: 5px 0;
    border-bottom: 1px solid #e7e7e7;
}

/* Botões de app */
.app-buttons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.app-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    background-color: #4a76a8;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.app-button:hover {
    background-color: #3a5b8c;
}

/* Contato */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    margin: 15px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    text-align: center;
    margin-bottom: 15px;
}

.contact-icon img {
    max-width: 60px;
    height: auto;
}

.contact-title {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 10px;
    text-align: center;
}

.contact-content {
    font-size: 0.9rem;
    text-align: center;
}

.contact-content a {
    color: #4a76a8;
    text-decoration: none;
}

.contact-content a:hover {
    text-decoration: underline;
}

/* Tarifas */
.tariff-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.tariff-table td, .tariff-table th {
    padding: 10px;
    border: 1px solid #e7e7e7;
}

.tariff-table th {
    background-color: #f8f8f8;
    text-align: left;
}

.tariff-notes {
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 30px;
}

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

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.footer-info {
    margin-bottom: 20px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #aaa;
}

/* Responsividade */
@media (max-width: 768px) {
    .section-content {
        flex-direction: column;
    }
    
    .section-text, .section-image {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .nav-item {
        padding: 8px 15px;
        margin: 3px;
    }
}

@media (max-width: 480px) {
    .page-title h1 {
        font-size: 2rem;
    }
    
    .page-title h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-button {
        margin: 10px 0;
    }
}
