/* ===================================
   PROVEXA - Estilo Minimalista
   Version: 2.6.0-repositionnement
   Build: 2026-08-27-20:00
   =================================== */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a2f4a;
    --text-color: #000000;
    --text-secondary: #4a4a4a;
    --background: #ffffff;
    --border-color: #e5e5e5;
    --hover-color: #2d4a6f;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    background-color: var(--background);
    line-height: 1.6;
    font-weight: 400;
}

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

/* Navigation */
.nav {
    background: var(--background);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 30px;
}

/* Nav Contact Info */
.nav-contact-info {
    display: flex;
    gap: 25px;
    margin-left: auto;
    margin-right: 30px;
}

.nav-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
}

.nav-contact-item svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.nav-contact-text {
    white-space: nowrap;
}

.logo-link {
    display: block;
    line-height: 0;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Language Selector */
.lang-selector {
    position: relative;
}

.lang-button {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid var(--border-color);
    padding: 8px 14px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s;
}

.lang-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.lang-button svg {
    transition: transform 0.3s;
}

.lang-button:hover svg {
    transform: translateY(2px);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--background);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 100;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 12px 16px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.lang-option:hover {
    background: #f5f5f5;
}

.lang-option.active {
    background: var(--primary-color);
    color: var(--background);
}

.lang-option.active:hover {
    background: var(--hover-color);
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(rgba(26, 47, 74, 0.75), rgba(26, 47, 74, 0.75)),
                url('../images/hero-building.jpg') center/cover;
    background-attachment: fixed;
    margin-top: 60px;
    position: relative;
    color: var(--background);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 47, 74, 0.6);
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-logo {
    max-width: 370px;
    width: 100%;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.hero-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--background);
    margin-bottom: 20px;
    line-height: 1.3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-badge {
    margin-top: 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-trust {
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-weight: 400;
}

/* Response Time Badge */
.contact-intro {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--background);
    color: var(--primary-color);
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Positioning Section */
.positioning {
    padding: 50px 0;
    background: #f8f9fb;
    border-bottom: 1px solid var(--border-color);
}

.positioning-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 500;
}

.positioning-line1,
.positioning-line2 {
    display: block;
}

.positioning-line2 {
    margin-top: 10px;
}

/* How We Work Section */
.how-we-work {
    padding: 80px 0;
    background: var(--background);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 50px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.how-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.5;
    position: relative;
    padding-left: 25px;
}

.how-item h3::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.how-tagline {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

/* Zone d'intervention Section */
.intervention-zone {
    padding: 70px 0;
    background: var(--background);
}

.zone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.zone-column {
    text-align: left;
}

.zone-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.zone-region {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.zone-cities {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.zone-tagline {
    margin-top: 50px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

/* Desktop: manter tagline em uma linha */
@media (min-width: 769px) {
    .zone-tagline-nowrap {
        white-space: nowrap;
        max-width: none;
    }
}

/* Mobile: permitir quebra natural */
@media (max-width: 768px) {
    .zone-tagline {
        max-width: 100%;
    }
}

/* Social Proof Section */
.social-proof {
    padding: 70px 0;
    background: #f8f9fb;
    text-align: center;
}

.social-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 35px;
}

.btn-social {
    background: var(--primary-color);
    color: var(--background);
    display: inline-block;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
}

/* About Section */
.about {
    background: var(--background);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* Services Section */
.services {
    background: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--background);
    padding: 0;
    border: none;
}

/* Remover estilos específicos de primary, secondary, complementary */
.service-card.primary,
.service-card.secondary,
.service-card.complementary {
    background: var(--background);
    padding: 0;
    border: none;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.4;
}

.service-list {
    list-style: none;
    margin-bottom: 30px;
}

.service-list li {
    padding: 12px 0;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    line-height: 1.6;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 20px;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Why Section */
.why {
    background: var(--background);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-item {
    text-align: center;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--background);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 300;
}

.why-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1.4;
}

.why-item p {
    display: none;
}

/* Contact Section */
.contact {
    background: #fafafa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3,
.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item strong {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    font-size: 17px;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-vat {
    margin-top: 25px;
    font-size: 11px;
    color: var(--text-secondary);
    font-style: italic;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px;
    border: 1px solid var(--border-color);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-color);
    background: var(--background);
    transition: border-color 0.3s;
}

.form-group select {
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    font-size: 13px;
    color: #666;
    margin: -10px 0 20px 0;
    font-style: italic;
}

.form-alert {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 12px 15px;
    margin: 10px 0 20px 0;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.form-privacy {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
}

.form-privacy a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-privacy a:hover {
    text-decoration: underline;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    display: none;
    font-size: 15px;
}

.form-message.success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-message.error {
    display: block;
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.form-message.info {
    display: block;
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #90caf9;
}

/* Footer */
.footer {
    background: var(--primary-color);
    border-top: none;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    text-align: left;
}

.footer-column h4 {
    font-size: 16px;
    color: var(--background);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
}

.footer-column strong {
    color: var(--background);
    font-weight: 600;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--background);
}


.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

/* Legal Pages */
.legal-page {
    padding: 150px 0 100px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

.legal-content em {
    font-size: 14px;
    color: var(--text-secondary);
}

.back-link {
    text-align: center;
    margin-top: 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        flex-wrap: wrap;
        padding: 0 15px;
    }

    .nav {
        padding: 12px 0;
    }

    .nav-contact-info {
        order: 3;
        width: 100%;
        justify-content: center;
        margin: 12px 0 0 0;
        padding-top: 12px;
        border-top: 1px solid var(--border-color);
    }

    .nav-email {
        display: none;
    }

    .nav-menu {
        gap: 12px;
    }

    .nav-menu a {
        font-size: 12px;
        padding: 4px 0;
    }
    
    .lang-button {
        padding: 6px 10px;
        font-size: 13px;
    }

    .logo-img {
        height: 40px;
    }

    .nav-phone {
        font-size: 13px;
    }

    .hero {
        padding: 120px 0 80px;
        background-attachment: scroll;
    }

    .hero-logo {
        max-width: 350px;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 30px;
    }
    
    .hero-badge {
        font-size: 14px;
    }

    .hero-trust {
        font-size: 11px;
    }
    
    .btn-primary {
        padding: 16px 35px;
        font-size: 16px;
    }
    
    .positioning {
        padding: 40px 0;
    }
    
    .positioning-text {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .how-we-work {
        padding: 60px 0;
    }
    
    .how-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .how-item h3 {
        font-size: 16px;
    }
    
    .how-tagline {
        font-size: 15px;
        margin-top: 30px;
    }
    
    .social-proof {
        padding: 50px 0;
    }
    
    .social-text {
        font-size: 16px;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

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

    .service-card.primary {
        padding: 40px 30px;
    }

    .service-card.primary h3 {
        font-size: 24px;
    }

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

    .zone-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    .footer-column {
        text-align: left;
    }

    .legal-page {
        padding: 120px 0 60px;
    }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    .nav-contact-text {
        display: none;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
    }
    
    .nav {
        padding: 10px 0;
    }

    .nav-menu {
        gap: 8px;
    }

    .nav-menu a {
        font-size: 11px;
    }
    
    .nav-contact-info {
        margin: 10px 0 0 0;
        padding-top: 10px;
    }
    
    .nav-phone {
        font-size: 12px;
    }
    
    .lang-button {
        padding: 5px 8px;
        font-size: 12px;
    }
    
    .lang-dropdown {
        min-width: 120px;
    }

    .hero-logo {
        max-width: 280px;
    }

    .hero-title {
        font-size: 18px;
    }

    .btn-primary {
        padding: 14px 30px;
        font-size: 15px;
    }

    .service-card {
        padding: 30px 20px;
    }
}

/* Center the presentation sections and their content. */
.how-we-work,
.intervention-zone,
.services,
.zone-column {
    text-align: center;
}

.how-item h3 {
    padding-left: 0;
}

.how-item h3::before {
    position: static;
    margin-right: 8px;
}
