:root {
    --primary-color: #003366;
    --secondary-color: #ff6600;
    --text-color: #333;
    --light-gray: #f8f8f8;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    
    /* Tipografia */
    --title-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    --line-height-title: 1.2;
    --line-height-body: 1.6;
}

body {
    font-family: var(--body-font);
    margin: 0;
    padding-top: 80px;
    line-height: var(--line-height-body);
    color: var(--text-color);
}

.nav-fixed {
    background: rgba(0, 51, 102, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-menu {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu a {
    font-family: var(--title-font);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

header {
    background: linear-gradient(135deg, var(--primary-color), #004c99);
    padding: 60px 0;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.8em;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.3em;
}

.header-subtitle {
    font-family: var(--body-font);
    font-size: 1.2em;
    font-weight: 400;
    opacity: 0.9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.info {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    padding: 30px;
}

.info:hover {
    transform: translateY(-5px);
}

.legal-info {
    background: var(--light-gray);
    padding: 40px 0;
    font-size: 0.9em;
    line-height: 1.8;
}

.legal-info h2 {
    font-size: 1.1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.footer-content {
    background: var(--primary-color);
    padding: 60px 0 40px;
}

.footer-section h3 {
    font-family: var(--title-font);
    color: var(--secondary-color);
    font-size: 1.1em;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.cookie-alert {
    background: rgba(0, 51, 102, 0.98);
    backdrop-filter: blur(10px);
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
}

/* Efeitos de hover refinados */
a {
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--title-font);
    line-height: var(--line-height-title);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.services-section h2 {
    font-size: 2.2em;
    margin-bottom: 1em;
}

.service-header h3 {
    font-size: 1.5em;
    font-weight: 600;
}

.site-footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.9);
    padding: 0;
    margin-top: 60px;
}

.footer-main {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: var(--secondary-color);
    font-size: 1.2em;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact-list i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-list a:hover {
    color: var(--secondary-color);
}

.footer-address {
    font-style: normal;
    line-height: 1.8;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    z-index: 997;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    background-color: #20ba57;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Cookie Alert */
.cookie-alert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 51, 102, 0.95);
    color: white;
    padding: 15px;
    z-index: 999;
    display: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 10px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--secondary-color);
    color: white;
}

.cookie-btn.reject {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Responsividade melhorada */
@media (max-width: 768px) {
    header {
        padding: 40px 0;
    }
    
    header h1 {
        font-size: 2em;
    }
    
    .legal-grid {
        gap: 20px;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .footer-main {
        padding: 40px 0;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 10px;
    }
}

.company-info-section {
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    padding: 40px 0;
    margin-top: 60px;
    font-size: 0.85em;
    color: #666;
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.company-info-group {
    padding: 15px;
}

.company-info-group h4 {
    color: var(--primary-color);
    font-size: 1em;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-info-list li {
    padding: 4px 0;
    display: flex;
    gap: 10px;
}

.company-info-label {
    color: #555;
    font-weight: 500;
    min-width: 140px;
}

@media (max-width: 768px) {
    .company-info-section {
        font-size: 0.8em;
    }
    
    .company-info-list li {
        flex-direction: column;
        gap: 2px;
    }
    
    .company-info-label {
        min-width: auto;
    }
}

.hero-quote {
    background: linear-gradient(135deg, var(--primary-color) 0%, #002244 100%);
    padding: 60px 0;
    margin-top: 85px;
    position: relative;
    overflow: hidden;
}

.hero-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-quote h2 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(to right, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.quote-button {
    background: var(--secondary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.quote-button:hover {
    transform: translateY(-2px) scale(1.02);
    background: #ff7518;
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
    text-decoration: none;
}

.quote-icon {
    background: rgba(255,255,255,0.2);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quote-button:hover .quote-icon {
    transform: rotate(15deg);
}

.learn-more {
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: var(--secondary-color);
    text-decoration: none;
    transform: translateX(5px);
}

.learn-more i {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .hero-quote {
        padding: 40px 0;
        margin-top: 0;
    }

    .hero-quote h2 {
        font-size: 2em;
    }

    .hero-text {
        font-size: 1.1em;
        padding: 0 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .quote-button {
        width: 100%;
        justify-content: center;
    }
}
