body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    color: #333;
    padding-top: 60px;
}

header {
    margin-top: 0;
}

/* Copiar todos os estilos do index.html aqui e remover a tag style do index.html */

.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #000;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
}

.nav-brand i {
    color: #d4af37;
    margin-right: 10px;
    font-size: 1.5em;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #d4af37;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 10px;
    }
    
    .nav-brand {
        margin-bottom: 10px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    body {
        padding-top: 100px;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float i {
    font-size: 2em;
}

.cookie-alert {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-alert.show {
    transform: translateY(0);
}

.cookie-alert .cookie-text {
    margin-right: 20px;
}

.cookie-alert .cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #d4af37;
    color: black;
}

.cookie-accept:hover {
    background-color: #b39030;
}

.cookie-reject {
    background-color: #444;
    color: white;
}

.cookie-reject:hover {
    background-color: #555;
}

.registro-empresa {
    background-color: #f8f8f8;
    padding: 30px 0;
    font-size: 0.85em;
    color: #666;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

.registro-empresa .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.registro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.registro-item {
    margin-bottom: 15px;
}

.registro-item strong {
    color: #888;
    font-weight: 600;
}

.registro-title {
    color: #999;
    font-size: 1em;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .registro-empresa {
        font-size: 0.8em;
    }
}

.services-section {
    padding: 40px 0;
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 25px;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 2.5em;
    color: #d4af37;
    margin-bottom: 20px;
}

.service-title {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    display: flex;
    align-items: center;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: #d4af37;
    margin-right: 10px;
    font-size: 0.9em;
}

.service-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #d4af37;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.service-button:hover {
    background-color: #b39030;
}

.section-title {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 30px 0;
    margin-top: 60px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" fill="none"/><path d="M0 20c5.523 0 10-4.477 10-10S5.523 0 0 0h20v20H0z" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.5;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-text {
    color: #fff;
    flex: 1;
    padding-right: 40px;
}

.cta-text h2 {
    font-size: 2em;
    margin: 0 0 10px;
    color: #d4af37;
}

.cta-text p {
    font-size: 1.1em;
    margin: 0;
    opacity: 0.9;
}

.cta-button {
    background: #d4af37;
    color: #000;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    background: #e5c158;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.cta-button i {
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-text {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

.ipva-calculator {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.calculator-field {
    margin-bottom: 15px;
}

.calculator-field label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: 600;
}

.calculator-field select,
.calculator-field input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.3s;
}

.calculator-field select:focus,
.calculator-field input:focus {
    outline: none;
    border-color: #d4af37;
}

.calculator-result {
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: none;
}

.calculator-result.show {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

.result-value {
    font-size: 1.5em;
    color: #d4af37;
    font-weight: bold;
    margin: 10px 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.calc-button {
    background: #d4af37;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    transition: background-color 0.3s;
}

.calc-button:hover {
    background: #b39030;
}
