/* 
   Clean Contact Page Styles
   Um design minimalista e moderno com foco em sustentabilidade
*/

:root {
    /* Cores principais - paleta sustentável */
    --verde-primario: #2c6e49;
    --verde-claro: #4c956c;
    --verde-escuro: #183a37;
    --areia: #fefee3;
    --branco: #ffffff;
    --cinza-claro: #f7f7f7;
    --cinza-medio: #e0e0e0;
    --texto: #333333;

    /* Fontes */
    --fonte-principal: 'Poppins', Arial, sans-serif;
    --fonte-titulos: 'Poppins', Arial, sans-serif;
}

body.clean-contact {
    font-family: var(--fonte-principal);
    color: var(--texto);
    background-color: var(--branco);
    line-height: 1.6;
}

/* Header Simplificado */
header.clean-header {
    background: var(--verde-primario);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.clean-header.scrolled {
    padding: 10px 0;
    background: var(--verde-escuro);
}

.clean-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.clean-logo {
    max-height: 50px;
}

.clean-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.clean-menu li {
    margin-left: 30px;
}

.clean-menu a {
    color: var(--branco);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.clean-menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--areia);
    transition: width 0.3s ease;
}

.clean-menu a:hover:after {
    width: 100%;
}

.clean-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--branco);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section Minimalista */
.clean-hero {
    padding: 180px 0 100px;
    background-color: var(--cinza-claro);
    position: relative;
    overflow: hidden;
}

.clean-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: grayscale(40%);
}

.clean-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(44, 110, 73, 0.8), rgba(24, 58, 55, 0.6));
    opacity: 0.7;
}

.clean-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--texto);
}

.clean-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--verde-escuro);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.clean-hero-title:after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--verde-claro);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.clean-hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--verde-escuro);
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 10px;
}

.clean-hero-subtitle:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--verde-claro);
}

/* Seção de Contato Clean */
.clean-contact-section {
    padding: 80px 0;
    background-color: var(--branco);
    position: relative;
}

/* Elementos decorativos sutis */
.clean-contact-section:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--cinza-claro);
    border-radius: 0 0 0 100%;
    opacity: 0.5;
    z-index: 0;
}

.clean-contact-container {
    position: relative;
    z-index: 1;
}

.clean-section-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--verde-escuro);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.clean-section-title:after {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--verde-claro);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Cards de informação com design clean e efeito glass */
.clean-info-card {
    position: relative;
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    z-index: 1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
}

.card-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0));
    z-index: 0;
    transition: left 0.7s ease;
}

.clean-info-card:hover .card-hover-effect {
    left: 100%;
}

.clean-info-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--verde-claro), var(--verde-primario));
    z-index: 0;
    opacity: 0.8;
    transform: scaleX(0.3);
    transition: transform 0.4s ease;
}

.clean-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(44, 110, 73, 0.2);
}

.clean-info-card:hover:before {
    transform: scaleX(1);
}

.clean-info-icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: var(--verde-primario);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.5s ease;
    z-index: 2;
}

.clean-info-icon:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    top: 0;
    left: 0;
    animation: spin 12s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.clean-info-card:hover .clean-info-icon {
    background: var(--verde-escuro);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(44, 110, 73, 0.2);
}

.clean-info-icon i {
    font-size: 26px;
    color: var(--branco);
    transition: all 0.3s ease;
}

.clean-info-title {
    position: relative;
    font-size: 22px;
    font-weight: 600;
    color: var(--verde-escuro);
    margin-bottom: 20px;
    text-align: center;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.clean-info-title:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--verde-claro);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.clean-info-card:hover .clean-info-title:after {
    width: 60px;
}

.clean-info-text {
    position: relative;
    font-size: 16px;
    color: var(--texto);
    text-align: center;
    line-height: 1.7;
    z-index: 2;
}

/* Formulário de contato clean */
.clean-contact-form {
    background: var(--branco);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--cinza-medio);
}

.clean-form-group {
    margin-bottom: 25px;
}

.clean-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--cinza-medio);
    border-radius: 6px;
    font-family: var(--fonte-principal);
    font-size: 15px;
    color: var(--texto);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.clean-form-control:focus {
    border-color: var(--verde-claro);
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 149, 108, 0.1);
}

.clean-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--verde-escuro);
    font-size: 15px;
}

textarea.clean-form-control {
    min-height: 150px;
    resize: vertical;
}

.clean-btn {
    background: var(--verde-primario);
    color: var(--branco);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.clean-btn:hover {
    background: var(--verde-escuro);
    transform: translateY(-2px);
}

/* Seção de mapa com design clean e elegante */
.clean-map-section {
    position: relative;
    margin: 50px 0 0;
}

.clean-map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(76, 149, 108, 0.2);
    transition: all 0.4s ease;
}

.clean-map-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--verde-claro), var(--verde-primario));
    z-index: 2;
}

.clean-map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Animação para o mapa */
.clean-map-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.clean-map-section.map-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Seção de contato direto */
/* Animações para rolagem da página */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Card profissional para contato */
.professional-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 35px 25px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-top: 4px solid var(--verde-primario);
    position: relative;
    overflow: hidden;
}

.professional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 110, 73, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

.professional-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.professional-card .clean-info-icon {
    background: rgba(44, 110, 73, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    transition: all 0.3s ease;
}

.professional-card:hover .clean-info-icon {
    background: var(--verde-primario);
}

.professional-card .clean-info-icon i {
    font-size: 28px;
    color: var(--verde-primario);
    transition: all 0.3s ease;
}

.professional-card:hover .clean-info-icon i {
    color: var(--branco);
}

/* WhatsApp botão discreto nos cards */
.clean-whatsapp {
    display: inline-flex;
    align-items: center;
    background: #25d366;
    color: var(--branco);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.15);
}

.clean-whatsapp i {
    margin-right: 8px;
    font-size: 16px;
}

.clean-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
    color: var(--branco);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

/* Footer clean e minimalista */
.clean-footer {
    background: var(--verde-escuro);
    color: var(--branco);
    padding: 60px 0 30px;
    position: relative;
}

.clean-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--verde-claro);
}

.clean-footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.clean-footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.clean-footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--branco);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.clean-footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--verde-claro);
}

.clean-footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.clean-footer-links li {
    margin-bottom: 10px;
}

.clean-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    font-size: 14px;
}

.clean-footer-links a:hover {
    color: var(--verde-claro);
    padding-left: 5px;
}

.clean-footer-contact-item {
    display: flex;
    margin-bottom: 15px;
    font-size: 14px;
}

.clean-footer-contact-icon {
    margin-right: 10px;
    color: var(--verde-claro);
}

.clean-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.clean-social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.clean-social-icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(178, 212, 84, 1) 0%, rgba(178, 212, 84, 0.7) 100%);
    transition: all 0.5s ease;
    opacity: 0;
    z-index: -1;
}

.clean-social-icon:hover {
    background: var(--verde-claro);
    transform: translateY(-3px);
    color: var(--branco);
}

.clean-footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.clean-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.clean-terms a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 15px;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.clean-terms a:hover {
    color: var(--verde-claro);
}

/* Media Queries */
@media (max-width: 992px) {
    .clean-hero {
        padding: 150px 0 80px;
    }

    .clean-hero-title {
        font-size: 36px;
    }

    .clean-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--verde-escuro);
        padding: 20px;
        flex-direction: column;
    }

    .clean-menu.active {
        display: flex;
    }

    .clean-menu li {
        margin: 10px 0;
    }

    .clean-menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .clean-hero-title {
        font-size: 32px;
    }

    .clean-hero-subtitle {
        font-size: 16px;
    }

    .clean-section-title {
        font-size: 28px;
    }

    .clean-info-card {
        margin-bottom: 20px;
    }

    .clean-contact-form {
        padding: 30px;
    }

    .clean-footer-col {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .clean-hero-title {
        font-size: 28px;
    }

    .clean-section-title {
        font-size: 24px;
    }

    .clean-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .clean-terms {
        margin-top: 10px;
    }

    .clean-terms a {
        margin: 0 8px;
    }
}