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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Top Bar */
.top-bar {
    background-color: #ee6c4e;
    padding: 10px 0;
    color: white;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-text {
    font-size: 14px;
    font-weight: 500;
}

.whatsapp-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Header */
.header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #374a59;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: #ee6c4e;
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ee6c4e;
}

/* Hero Section */
.hero {
    background: #000000;
    color: white;
    padding: 80px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text {
    max-width: 800px;
}



.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ee6c4e;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.2;
}

.btn-agendamento {
    background: #ee6c4e;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-agendamento:hover {
    background: #d85d43;
    transform: translateY(-2px);
}



/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #374a59;
    margin-bottom: 60px;
}

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

.service-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-title {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #374a59;
    text-align: center;
}

.service-divider {
    height: 3px;
    background: #ee6c4e;
    width: 50px;
    margin: 0 auto 20px;
}

.service-item .service-details {
    margin: 0 20px 15px;
}

.service-details {
    margin-bottom: 15px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-details:hover {
    border-color: #ee6c4e;
    box-shadow: 0 2px 8px rgba(238, 108, 78, 0.1);
}

.service-details[open] {
    border-color: #ee6c4e;
    box-shadow: 0 4px 12px rgba(238, 108, 78, 0.15);
}

.service-summary {
    padding: 15px;
    color: #374a59;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    background: #fafafa;
    border: none;
    outline: none;
    transition: all 0.3s ease;
    user-select: none;
    position: relative;
    padding-left: 35px;
    list-style: none;
}

.service-summary::-webkit-details-marker {
    display: none;
}

.service-summary::marker {
    display: none;
}

.service-summary::before {
    content: "▶";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: #ee6c4e;
    font-weight: bold;
}

.service-details[open] .service-summary::before {
    transform: translateY(-50%) rotate(90deg);
}

.service-summary:hover {
    background: #f5f5f5;
    color: #ee6c4e;
}

.service-details[open] .service-summary {
    background: #ee6c4e;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.service-content {
    padding: 20px;
    background: white;
    animation: slideDown 0.3s ease;
}

.service-content p {
    margin-bottom: 12px;
    color: #374a59;
    line-height: 1.6;
}

.service-content p:last-child {
    margin-bottom: 0;
}

.service-content strong {
    color: #ee6c4e;
    font-weight: 600;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-schedule {
    padding: 10px 20px;
    background: #f8f9fa;
    margin: 15px 20px;
    border-radius: 5px;
    text-align: center;
}

.service-schedule p {
    margin: 0;
    color: #374a59;
    font-size: 14px;
    font-weight: 500;
}

.btn-service {
    display: block;
    background: #ee6c4e;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    margin: 0 20px 20px;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #d85d43;
    transform: translateY(-2px);
}

/* Equipment Section */
.equipment {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.equipment-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.equipment-text {
    flex: 1;
}

.equipment-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ee6c4e;
    margin-bottom: 30px;
    line-height: 1.2;
}

.equipment-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374a59;
    text-align: justify;
}

.equipment-image {
    flex: 1;
    position: relative;
}

.equipment-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 10px;
    z-index: 2;
}

.equipment-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    background: white;
}

.why-choose-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.why-choose-text {
    flex: 1;
}

.why-choose-text h3 {
    color: #7488a0;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.why-choose-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #374a59;
    margin-bottom: 40px;
    line-height: 1.1;
}

.btn-contact {
    background: #ee6c4e;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #d85d43;
    transform: translateY(-2px);
}

.benefits-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-item {
    padding: 20px;
}



.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #374a59;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #7488a0;
    font-size: 14px;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #374a59;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 20px;
    color: #374a59;
    line-height: 1.8;
}

.contact-form {
    flex: 1;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #374a59;
    margin-bottom: 30px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ee6c4e;
}

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

.contact-form button {
    background: #ee6c4e;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #d85d43;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .equipment-content,
    .technology-content,
    .why-choose-content,
    .contact-content {
        flex-direction: column;
        text-align: center;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .equipment-title {
        font-size: 1.8rem;
    }

    .why-choose-text h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .services,
    .equipment,
    .technology,
    .why-choose,
    .gallery,
    .contact {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

/* Technology Section */
.technology {
    padding: 80px 0;
    background: #f8f9fa;
}

.technology-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.technology-image {
    flex: 1;
}

.technology-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.technology-text {
    flex: 1;
}

.technology-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #374a59;
    margin-bottom: 30px;
    line-height: 1.2;
}

.technology-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374a59;
    text-align: justify;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.partner-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
}

.partner-item h4 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #374a59;
    margin-bottom: 15px;
}

.partner-item p {
    color: #7488a0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.partner-link {
    background: #ee6c4e;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.partner-link:hover {
    background: #d85d43;
    transform: translateY(-2px);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: white;
}

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Hero image improvements */
.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item,
.benefit-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Social Media Footer */
.social-footer {
    padding: 60px 0;
    background: linear-gradient(135deg, #ee6c4e 0%, #d85d43 100%);
    color: white;
}

.social-footer-content {
    text-align: center;
}

.social-footer h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: white;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    border-color: transparent;
}

.social-icon.whatsapp:hover {
    background: #25d366;
    border-color: transparent;
}

@media (max-width: 768px) {
    .social-icons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .social-icon {
        width: 200px;
        justify-content: center;
    }
}

/* Client Area */
.client-area {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.client-area-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.client-area-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.auth-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 400px;
}

.auth-form h3 {
    color: #333;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input:focus {
    border-color: #ee6c4e;
    outline: none;
    box-shadow: 0 0 0 3px rgba(238, 108, 78, 0.1);
}

.btn-login, .btn-register {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ee6c4e 0%, #d85d43 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.btn-login:hover, .btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 108, 78, 0.3);
}

.auth-link {
    color: #666;
    font-size: 0.9rem;
}

.auth-link a {
    color: #ee6c4e;
    text-decoration: none;
    font-weight: bold;
}

.auth-link a:hover {
    text-decoration: underline;
}

/* Client Dashboard */
.client-dashboard {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.dashboard-header h3 {
    color: #333;
    margin: 0;
    font-size: 1.5rem;
}

.btn-logout {
    padding: 10px 20px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: #c82333;
    transform: translateY(-1px);
}

.dashboard-section {
    margin-bottom: 40px;
}

.dashboard-section h4 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-left: 4px solid #ee6c4e;
    padding-left: 15px;
}

.laudos-grid {
    display: grid;
    gap: 20px;
}

.laudo-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.laudo-item:hover {
    border-color: #ee6c4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.laudo-info h5 {
    color: #333;
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.laudo-info p {
    margin: 5px 0;
    color: #666;
    font-size: 0.9rem;
}

.status-aprovado {
    color: #28a745;
    font-weight: bold;
}

.status-pendente {
    color: #ffc107;
    font-weight: bold;
}

.laudo-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-download, .btn-view {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background: #ee6c4e;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-download:hover, .btn-view:hover {
    background: #d85d43;
    transform: translateY(-1px);
}

.btn-view {
    background: #6c757d;
}

.btn-view:hover {
    background: #5a6268;
}

.btn-disabled {
    padding: 8px 15px;
    background: #e9ecef;
    color: #6c757d;
    border-radius: 5px;
    font-size: 0.9rem;
    font-style: italic;
}

.btn-new-vistoria {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ee6c4e 0%, #d85d43 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-new-vistoria:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 108, 78, 0.3);
}

@media (max-width: 768px) {
    .auth-form, .client-dashboard {
        padding: 30px 20px;
        margin: 20px 10px;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .laudo-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .laudo-actions {
        justify-content: center;
    }
}

/* Estilos para formulário simplificado */
.client-form-container h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #374a59;
    margin-bottom: 10px;
    text-align: center;
}

.auth-form-simple {
    margin-bottom: 20px;
}

.auth-form-simple h4 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-align: center;
}

.btn-simple-login, .btn-simple-register {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ee6c4e 0%, #d85d43 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn-simple-login:hover, .btn-simple-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 108, 78, 0.3);
}

.client-dashboard-simple {
    text-align: left;
}

.dashboard-header-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.dashboard-header-simple h4 {
    color: #333;
    margin: 0;
    font-size: 1.3rem;
}

.btn-logout-simple {
    padding: 10px 20px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-logout-simple:hover {
    background: #c82333;
    transform: translateY(-1px);
}

.dashboard-section-simple {
    margin-bottom: 30px;
}

.dashboard-section-simple h5 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
    border-left: 4px solid #ee6c4e;
    padding-left: 15px;
}

.laudo-item-simple {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.laudo-item-simple:hover {
    border-color: #ee6c4e;
    transform: translateY(-2px);
}

.laudo-info-simple h6 {
    color: #333;
    margin: 0 0 8px 0;
    font-size: 1rem;
}

.laudo-info-simple p {
    margin: 4px 0;
    color: #666;
    font-size: 0.9rem;
}

.btn-download-simple {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-download-simple:hover {
    background: #218838;
    transform: translateY(-1px);
}

.btn-download-simple svg {
    fill: currentColor;
}

.btn-disabled-simple {
    padding: 8px 15px;
    background: #e9ecef;
    color: #6c757d;
    border-radius: 5px;
    font-size: 0.9rem;
    font-style: italic;
}

.btn-new-vistoria-simple {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ee6c4e 0%, #d85d43 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-new-vistoria-simple:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 108, 78, 0.3);
}

/* Client Area in Contact Form */
.client-area-form {
    width: 100%;
}

.client-area-form h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #374a59;
    margin-bottom: 10px;
    text-align: center;
}

.auth-form-contact {
    margin-bottom: 20px;
}

.auth-form-contact h4 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-align: center;
}

.btn-login-contact, .btn-register-contact {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ee6c4e 0%, #d85d43 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn-login-contact:hover, .btn-register-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 108, 78, 0.3);
}

.client-dashboard-contact {
    text-align: left;
}

.client-dashboard-contact .dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.client-dashboard-contact .dashboard-header h4 {
    color: #333;
    margin: 0;
    font-size: 1.3rem;
}

.client-dashboard-contact .dashboard-section {
    margin-bottom: 30px;
}

.client-dashboard-contact .dashboard-section h5 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
    border-left: 4px solid #ee6c4e;
    padding-left: 15px;
}

.client-dashboard-contact .dashboard-section h6 {
    color: #333;
    margin: 0 0 8px 0;
    font-size: 1rem;
}

.client-dashboard-contact .laudo-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.client-dashboard-contact .laudo-item:hover {
    border-color: #ee6c4e;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .client-dashboard-contact .dashboard-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .client-dashboard-contact .laudo-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .client-dashboard-contact .laudo-actions {
        justify-content: center;
    }
}

/* Focus states for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #ee6c4e;
    outline-offset: 2px;
}

/* Widget externo área do cliente */
#sgvistoria-cliente {
    transition: all 0.3s ease;
}

#sgvistoria-cliente:empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-style: italic;
}

#sgvistoria-cliente:empty::before {
    content: "Carregando área do cliente...";
}

/* Estilos para o formulário da área do cliente */
.client-form-container {
    width: 100%;
    max-width: 100%;
}

.auth-form-simple {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.auth-form-simple h4 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: #ee6c4e;
    outline: none;
}

.btn-simple-login,
.btn-simple-register {
    width: 100%;
    background: #ee6c4e;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-simple-login:hover,
.btn-simple-register:hover {
    background: #d55a3f;
}

.auth-link {
    text-align: center;
    margin-top: 15px;
}

.auth-link a {
    color: #ee6c4e;
    text-decoration: none;
}

.auth-link a:hover {
    text-decoration: underline;
}

.client-dashboard-simple {
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.dashboard-header-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.btn-logout-simple {
    background: #dc3545;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.dashboard-section-simple {
    margin-bottom: 30px;
}

.dashboard-section-simple h5 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
    border-left: 4px solid #ee6c4e;
    padding-left: 15px;
}

.laudo-item-simple {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.laudo-info-simple h6 {
    margin: 0 0 8px 0;
    color: #333;
}

.laudo-info-simple p {
    margin: 4px 0;
    color: #666;
    font-size: 14px;
}

.status-aprovado {
    color: #28a745;
    font-weight: bold;
}

.status-em-analise {
    color: #ffc107;
    font-weight: bold;
}

.btn-download-simple {
    background: #28a745;
    color: white;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.btn-download-simple:hover {
    background: #218838;
}

.btn-disabled-simple {
    background: #6c757d;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
}

.btn-new-vistoria-simple {
    background: #ee6c4e;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    font-weight: bold;
}

.btn-new-vistoria-simple:hover {
    background: #d55a3f;
}

/* Estilos para o link de cadastro */
.contact-form a[href*="clientes.sgvistoria.com"]:hover {
    background: #d55a3f !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 108, 78, 0.4) !important;
}

/* Responsividade para o widget */
@media (max-width: 768px) {
    #sgvistoria-cliente {
        padding: 15px;
        min-height: 350px;
    }
}