/* Global Styles */
:root {
    --primary-color: #1c69d7;
    --primary-dark: #1554b0;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --medium-gray: #ddd;
    --dark-gray: #777;
    --white: #fff;
    --black: #000;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    height: 80px;
}

.logo img {
    height: 60px;
    width: auto;
}

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

.main-nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.main-nav ul li a:hover {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Ajuste para o conteúdo não ficar atrás do header fixo */
main {
    margin-top: 80px;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/banner-home.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.hero-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Button Styles */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    margin-top: 20px;
}

.cta-button.secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.learn-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.learn-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(28, 105, 215, 0.8), rgba(28, 105, 215, 0.8)), url('../img/banner-pages.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
}

/* About Section */
.about-section, .exchange-section, .tourism-section, .team-section, .rates-section, .upcoming-trips, .contact-section, .map-section {
    padding: 80px 0;
}

.about-content, .exchange-content, .tourism-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content h2, .exchange-content h2, .tourism-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.about-content p, .exchange-content p, .tourism-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.values-list, .currency-list, .destinations-list, .services-list {
    margin: 20px 0;
}

.values-list li, .currency-list li, .destinations-list li, .services-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.values-list i, .currency-list i, .destinations-list i, .services-list i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
}

/* Exchange Section */
.exchange-content, .tourism-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.exchange-image, .tourism-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.exchange-image img, .tourism-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Rates Table */
.rates-table {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rates-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    padding: 15px 20px;
}

.rates-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 15px 20px;
    background-color: var(--white);
    border-bottom: 1px solid var(--medium-gray);
}

.rates-row:nth-child(even) {
    background-color: var(--light-gray);
}

.rates-note {
    padding: 15px 20px;
    background-color: var(--light-gray);
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Upcoming Trips */
.trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trip-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.trip-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.trip-info {
    padding: 20px;
}

.trip-info h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.trip-date {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.trip-price {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.trip-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.trip-button:hover {
    background-color: var(--primary-dark);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info h2, .contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.contact-info ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info ul li i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.social-media {
    margin-top: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Contact Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    font-family: inherit;
    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: var(--primary-color);
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: var(--primary-dark);
}

.form-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

/* Map Section */
.map-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
footer {
    background-color: #222;
    color: var(--white);
    padding: 60px 0 0;
}

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

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-col ul li i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .exchange-content, .tourism-content, .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .exchange-image, .tourism-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        transition: all 0.3s ease;
        padding: 20px;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .trips-grid {
        grid-template-columns: 1fr;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card, .trip-card, .exchange-content, .tourism-content {
    opacity: 0;
    transition: all 0.6s ease-out;
}

.service-card.animated, 
.trip-card.animated, 
.exchange-content.animated, 
.tourism-content.animated {
    opacity: 1;
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Efeito de scroll no header */
header.scroll-up {
    transform: translateY(0);
    transition: transform 0.3s ease;
}

header.scroll-down {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

/* Estilos específicos para a página de câmbio */
.cambio-hero {
    background: linear-gradient(135deg, #1c69d7 0%, #0d47a1 100%);
    color: white;
    padding: 100px 0 80px;
    margin-top: 80px;
}

.cambio-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero-content h1 i {
    margin-right: 15px;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button i {
    margin-right: 8px;
}

.cta-button.primary {
    background-color: white;
    color: #1c69d7;
}

.cta-button.primary:hover {
    background-color: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.hero-image img {
    max-width: 400px;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Seção de Moedas */
.moedas-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.moedas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.moeda-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.moeda-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.flag {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    background-size: cover;
    background-position: center;
}

.flag.usa {
    background-image: url('assets/img/flags/usa.png');
}

.flag.eu {
    background-image: url('assets/img/flags/eu.png');
}

.flag.uk {
    background-image: url('assets/img/flags/uk.png');
}

.flag.au {
    background-image: url('assets/img/flags/australia.png');
}

.flag.ca {
    background-image: url('assets/img/flags/canada.png');
}

.flag.small {
    width: 20px;
    height: 20px;
}

.moeda-card h3 {
    margin: 0;
    font-size: 1.2rem;
}

.moeda-body {
    margin-bottom: 15px;
}

.cotacao {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cotacao .compra, .cotacao .venda {
    font-size: 1.1rem;
    font-weight: 600;
}

.cotacao .compra::before {
    content: 'Compra: ';
    font-weight: normal;
    font-size: 0.9rem;
    color: #666;
}

.cotacao .venda::before {
    content: 'Venda: ';
    font-weight: normal;
    font-size: 0.9rem;
    color: #666;
}

.variacao {
    font-size: 0.9rem;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
}

.variacao.positive {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.variacao.negative {
    background-color: rgba(244, 67, 54, 0.1);
    color: #F44336;
}

.variacao.stable {
    background-color: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

.moeda-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.codigo {
    font-weight: bold;
    color: #1c69d7;
}

.btn-alerta {
    background: none;
    border: none;
    color: #1c69d7;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-alerta:hover {
    background-color: rgba(28, 105, 215, 0.1);
}

.btn-alerta i {
    margin-right: 5px;
}

/* Tabela de Cotações */
.cotacoes-section {
    padding: 80px 0;
}

.cotacoes-table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    background-color: #1c69d7;
    color: white;
    font-weight: 600;
    padding: 15px 20px;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    padding: 15px 20px;
    background-color: white;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.table-row:nth-child(even) {
    background-color: #f9f9f9;
}

.moeda-info {
    display: flex;
    align-items: center;
}

.moeda-info span {
    margin-left: 10px;
}

.mini-grafico {
    width: 80px;
    height: 30px;
}

.update-info {
    margin-top: 20px;
    text-align: right;
    color: #666;
    font-size: 0.9rem;
}

.update-info i {
    margin-right: 5px;
}

/* Calculadora */
.calculadora-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.calculadora {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.calculadora-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #1c69d7;
    box-shadow: 0 0 0 2px rgba(28, 105, 215, 0.2);
}

.btn-calcular {
    background-color: #1c69d7;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-calcular:hover {
    background-color: #1554b0;
    transform: translateY(-2px);
}

.btn-calcular i {
    margin-right: 8px;
}

.calculadora-resultado {
    background-color: #f5f9ff;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e0e9ff;
}

.resultado-header {
    border-bottom: 1px solid #e0e9ff;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.resultado-header h3 {
    margin: 0;
    color: #1c69d7;
}

.resultado-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.valor-origem, .valor-destino {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.valor-origem .moeda, .valor-destino .moeda {
    font-weight: 600;
    color: #555;
}

.valor-origem .valor, .valor-destino .valor {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1c69d7;
}

.conversao-icon {
    text-align: center;
    color: #1c69d7;
    font-size: 1.2rem;
}

.taxa-info {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
    font-size: 0.9rem;
    color: #666;
}

.taxa-info span {
    display: flex;
    flex-direction: column;
}

.taxa-info .taxa, .taxa-info .total {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

/* Benefícios */
.beneficios-section {
    padding: 80px 0;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.beneficio-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.beneficio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.beneficio-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(28, 105, 215, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #1c69d7;
    font-size: 1.5rem;
}

.beneficio-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.beneficio-card p {
    color: #666;
    margin: 0;
}

/* CTA Final */
.cta-final {
    padding: 60px 0;
    background: linear-gradient(135deg, #1c69d7 0%, #0d47a1 100%);
    color: white;
    text-align: center;
}

.cta-final h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.cta-final p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsivo */
@media (max-width: 992px) {
    .cambio-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .calculadora {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .table-header, .table-row {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    .grafico {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-image img {
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .table-header, .table-row {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .variacao {
        display: none;
    }
    
    .moedas-grid {
        grid-template-columns: 1fr;
    }
}

/* Estilos específicos para a página de turismo */
.turismo-hero {
    background: linear-gradient(135deg, #1c69d7 0%, #0d47a1 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
}

.turismo-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero-content h1 i {
    margin-right: 15px;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button i {
    margin-right: 8px;
}

.cta-button.primary {
    background-color: white;
    color: #1c69d7;
}

.cta-button.primary:hover {
    background-color: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.hero-image img {
    max-width: 450px;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Seção de Destaques */
.destaques-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.destaques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.destaque-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.destaque-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.destaque-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(28, 105, 215, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #1c69d7;
    font-size: 1.8rem;
}

.destaque-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.destaque-card p {
    color: #666;
    margin: 0;
}

/* Seção de Pacotes */
.pacotes-section {
    padding: 80px 0;
}

.pacotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pacote-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.pacote-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.pacote-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.destaque-tag, .novidade-tag, .promocao-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.destaque-tag {
    background-color: #FF5722;
}

.novidade-tag {
    background-color: #4CAF50;
}

.promocao-tag {
    background-color: #F44336;
}

.pacote-info {
    padding: 20px;
}

.pacote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.pacote-header h3 {
    margin: 0;
    color: #333;
}

.avaliacao {
    color: #FFC107;
    font-size: 0.9rem;
}

.avaliacao span {
    color: #666;
    margin-left: 5px;
}

.pacote-detalhes p {
    margin: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
}

.pacote-detalhes i {
    margin-right: 8px;
    color: #1c69d7;
    width: 16px;
    text-align: center;
}

.pacote-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.preco {
    display: flex;
    flex-direction: column;
}

.preco .de {
    font-size: 0.8rem;
    color: #999;
    text-decoration: line-through;
}

.preco .por {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1c69d7;
}

.preco .parcelas {
    font-size: 0.8rem;
    color: #666;
}

.btn-pacote {
    background-color: #1c69d7;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.btn-pacote:hover {
    background-color: #1554b0;
    transform: translateY(-2px);
}

.btn-pacote i {
    margin-right: 8px;
}

.ver-todos {
    text-align: center;
    margin-top: 40px;
}

.btn-ver-todos {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background-color: #1c69d7;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-ver-todos:hover {
    background-color: #1554b0;
    transform: translateY(-3px);
}

.btn-ver-todos i {
    margin-right: 8px;
}

/* Seção de Destinos */
.destinos-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.destinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.destino-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.destino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.destino-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.destino-info {
    padding: 20px;
    text-align: center;
}

.destino-info h3 {
    margin: 0 0 10px;
    color: #333;
}

.destino-info p {
    color: #666;
    margin-bottom: 15px;
}

.btn-destino {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background-color: #1c69d7;
    color: white;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-destino:hover {
    background-color: #1554b0;
}

.btn-destino i {
    margin-right: 8px;
}

/* Seção de Depoimentos */
.depoimentos-section {
    padding: 80px 0;
}

.depoimentos-carrossel {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.depoimento-card {
    min-width: 350px;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    scroll-snap-align: start;
}

.depoimento-texto {
    position: relative;
    margin-bottom: 20px;
    color: #555;
    font-style: italic;
}

.depoimento-texto i:first-child {
    color: #1c69d7;
    opacity: 0.3;
    font-size: 2rem;
    position: absolute;
    top: -10px;
    left: -10px;
}

.depoimento-autor {
    display: flex;
    align-items: center;
}

.autor-foto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 15px;
}

.autor-info h4 {
    margin: 0 0 5px;
    color: #333;
}

.autor-info span {
    font-size: 0.8rem;
    color: #666;
}

.avaliacao {
    color: #FFC107;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Seção FAQ */
.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.faq-pergunta {
    width: 100%;
    padding: 20px;
    background-color: white;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-pergunta:hover {
    background-color: #f5f5f5;
}

.faq-pergunta i {
    transition: transform 0.3s ease;
}

.faq-item.ativo .faq-pergunta i {
    transform: rotate(180deg);
}

.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: white;
    padding: 0 20px;
}

.faq-item.ativo .faq-resposta {
    max-height: 200px;
    padding: 20px;
    border-top: 1px solid #eee;
}

/* CTA Final */
.cta-final {
    padding: 60px 0;
    background: linear-gradient(135deg, #1c69d7 0%, #0d47a1 100%);
    color: white;
    text-align: center;
}

.cta-final h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.cta-final p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsivo */
@media (max-width: 992px) {
    .turismo-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .pacotes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-image img {
        max-width: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content .subtitle {
        font-size: 1rem;
    }
    
    .destaques-grid, .destinos-grid {
        grid-template-columns: 1fr;
    }
    
    .depoimento-card {
        min-width: 280px;
    }
}

/* Estilos específicos para a página institucional */
.institucional-hero {
    background: linear-gradient(135deg, #1c69d7 0%, #0d47a1 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
}

.institucional-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero-content h1 i {
    margin-right: 15px;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button i {
    margin-right: 8px;
}

.cta-button.primary {
    background-color: white;
    color: #1c69d7;
}

.cta-button.primary:hover {
    background-color: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.hero-image img {
    max-width: 450px;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Seção Linha do Tempo */
.timeline-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #1c69d7;
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 80px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background-color: #1c69d7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 1;
}

.timeline-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.timeline-item.ativo .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    margin-top: 0;
    color: #1c69d7;
}

.timeline-content p {
    margin-bottom: 0;
    color: #666;
}

/* Seção Valores */
.valores-section {
    padding: 80px 0;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.valor-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.valor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.valor-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(28, 105, 215, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #1c69d7;
    font-size: 2rem;
}

.valor-card h3 {
    margin-bottom: 20px;
    color: #333;
}

.valor-card p {
    color: #666;
    margin-bottom: 0;
}

.valores-list {
    text-align: left;
    margin-top: 15px;
    padding-left: 20px;
}

.valores-list li {
    margin-bottom: 8px;
    color: #666;
}

.valores-list i {
    color: #1c69d7;
    margin-right: 8px;
}

/* Seção Números */
.numeros-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.numero-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.numero {
    font-size: 3rem;
    font-weight: 700;
    color: #1c69d7;
    margin-bottom: 10px;
}

.numero-label {
    color: #666;
    font-size: 1.1rem;
}

/* Seção Equipe */
.equipe-section {
    padding: 80px 0;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.membro-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.membro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.membro-foto {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.membro-info {
    padding: 20px;
    text-align: center;
}

.membro-info h3 {
    margin: 0 0 5px;
    color: #333;
}

.cargo {
    display: block;
    color: #1c69d7;
    font-weight: 600;
    margin-bottom: 15px;
}

.membro-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.membro-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.membro-social a {
    width: 35px;
    height: 35px;
    background-color: rgba(28, 105, 215, 0.1);
    color: #1c69d7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.membro-social a:hover {
    background-color: #1c69d7;
    color: white;
}

/* Seção Premiações */
.premiacoes-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.premiacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.premiacao-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.premiacao-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.premiacao-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(28, 105, 215, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #1c69d7;
    font-size: 2rem;
}

.premiacao-card h3 {
    margin-bottom: 10px;
    color: #333;
}

.premiacao-card span {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Final */
.cta-final {
    padding: 60px 0;
    background: linear-gradient(135deg, #1c69d7 0%, #0d47a1 100%);
    color: white;
    text-align: center;
}

.cta-final h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.cta-final p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsivo */
@media (max-width: 992px) {
    .institucional-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-image img {
        max-width: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .timeline::before {
        left: 25px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content .subtitle {
        font-size: 1rem;
    }
    
    .valores-grid, .equipe-grid, .premiacoes-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 0;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        padding-left: 0;
        margin-bottom: 30px;
    }
    
    .timeline-year {
        position: relative;
        margin-bottom: 15px;
    }
}
/* Estilos específicos para a página de contato */
.contato-hero {
    background: linear-gradient(135deg, #1c69d7 0%, #0d47a1 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
}

.contato-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero-content h1 i {
    margin-right: 15px;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button i {
    margin-right: 8px;
}

.cta-button.primary {
    background-color: white;
    color: #1c69d7;
}

.cta-button.primary:hover {
    background-color: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.hero-image img {
    max-width: 450px;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Seção Informações de Contato */
.info-contato-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.info-contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.info-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(28, 105, 215, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #1c69d7;
    font-size: 1.8rem;
}

.info-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.info-card p {
    color: #666;
    margin-bottom: 20px;
}

.btn-info {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background-color: #1c69d7;
    color: white;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-info:hover {
    background-color: #1554b0;
}

.btn-info i {
    margin-right: 8px;
}

/* Seção Formulário */
.formulario-section {
    padding: 80px 0;
}

.formulario-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.formulario-content {
    animation: fadeIn 0.5s ease-out;
}

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

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    display: flex;
    align-items: center;
}

.form-group label i {
    margin-right: 10px;
    color: #1c69d7;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1c69d7;
    box-shadow: 0 0 0 2px rgba(28, 105, 215, 0.2);
}

.btn-enviar {
    background-color: #1c69d7;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-enviar:hover {
    background-color: #1554b0;
    transform: translateY(-2px);
}

.btn-enviar i {
    margin-right: 8px;
}

.form-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 20px;
    border-radius: 6px;
    margin-top: 20px;
}

/* Formulário Info */
.formulario-info {
    background-color: #f5f9ff;
    border-radius: 10px;
    padding: 30px;
    border: 1px solid #e0e9ff;
}

.formulario-info h3 {
    color: #1c69d7;
    margin-top: 0;
    display: flex;
    align-items: center;
}

.formulario-info h3 i {
    margin-right: 10px;
}

.formulario-info p {
    color: #666;
    margin-bottom: 30px;
}

.dicas-contato {
    margin-bottom: 30px;
}

.dica-item {
    display: flex;
    margin-bottom: 20px;
}

.dica-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(28, 105, 215, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1c69d7;
    font-size: 1rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.dica-content h4 {
    margin: 0 0 5px;
    color: #333;
}

.dica-content p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.redes-sociais h4 {
    margin-bottom: 15px;
    color: #333;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-icon.whatsapp {
    background-color: #25D366;
}

.social-icon.linkedin {
    background-color: #0077b5;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Seção Mapa */
.mapa-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.mapa-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.dicas-localizacao {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.dica-local {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.dica-local i {
    font-size: 2rem;
    color: #1c69d7;
    margin-bottom: 15px;
}

.dica-local h4 {
    margin: 0 0 10px;
    color: #333;
}

.dica-local p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* CTA Final */
.cta-final {
    padding: 60px 0;
    background: linear-gradient(135deg, #1c69d7 0%, #0d47a1 100%);
    color: white;
    text-align: center;
}

.cta-final h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.cta-final p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsivo */
@media (max-width: 992px) {
    .contato-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .formulario-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-image img {
        max-width: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content .subtitle {
        font-size: 1rem;
    }
    
    .info-contato-grid {
        grid-template-columns: 1fr;
    }
    
    .dicas-localizacao {
        grid-template-columns: 1fr;
    }
}