/* Reset e Configurações Básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #2B3646;
    --logo-color: #BDAC8E;
    --accent-color: #B5C9D4;
    --white: #ffffff;
    --text-light: #f8f9fa;
    --text-dark: #2B3646;
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
        transform: translateY(-50%) translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) translateX(5px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.header {
    background: rgba(43, 54, 70, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

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

/* Menu Hambúrguer */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 2px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu Lateral Mobile */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #1a2332 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(181, 201, 212, 0.2);
}

.mobile-logo img {
    height: 50px;
    width: auto;
    max-width: 120px;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.mobile-menu-close:hover {
    background: rgba(181, 201, 212, 0.1);
    color: var(--accent-color);
}

.mobile-nav {
    flex: 1;
    padding: 2rem 0;
    margin: 0;
    list-style: none;
}

.mobile-nav li {
    margin: 0;
}

.mobile-nav-link {
    display: block;
    padding: 1.2rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
    position: relative;
}

.mobile-nav-link:hover {
    background: rgba(181, 201, 212, 0.1);
    border-left-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateX(10px);
}

.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(181, 201, 212, 0.2);
    text-align: center;
}

.mobile-menu-footer p {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.mobile-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.mobile-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.logo img {
    height: 80px;
    width: auto;
    max-width: 200px;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.logo h1 {
    color: var(--logo-color);
    font-size: 2rem;
    font-weight: 700;
}

.logo span {
    color: var(--accent-color);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #1a2332 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23B5C9D4" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Botões */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--logo-color) 0%, var(--accent-color) 100%);
    color: var(--text-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(189, 172, 142, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Quem Somos */
#quem-somos {
    position: relative;
    background-image: linear-gradient(rgba(43, 54, 70, 0.7), rgba(43, 54, 70, 0.7)), 
                      url('../assets/images/papeladacopiar.webp');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
}

#quem-somos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(43, 54, 70, 0.05);
    z-index: 1;
}

#quem-somos .container {
    position: relative;
    z-index: 2;
}

#quem-somos .section-title,
#quem-somos .section-subtitle,
#quem-somos .quem-somos-text,
#quem-somos .stat {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.quem-somos-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.quem-somos-text {
    text-align: center;
    max-width: 800px;
}

.quem-somos-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.quem-somos-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 1000px;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(181, 201, 212, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(181, 201, 212, 0.2);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(181, 201, 212, 0.15);
}

.stat h3 {
    font-size: 1.8rem;
    color: var(--logo-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat p {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Serviços */
.services-section {
    background: rgba(26, 35, 50, 0.5);
    position: relative;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(181, 201, 212, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(181, 201, 212, 0.1), transparent);
    transition: var(--transition);
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--logo-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--text-dark);
}

.service-icon img {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Sócios */
.socios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.socio-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(181, 201, 212, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.socio-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.socio-photo {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.socio-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    margin: 0 auto;
    display: block;
    border: 3px solid rgba(181, 201, 212, 0.3);
    transition: var(--transition);
}

.socio-photo a {
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
}

.socio-photo:hover img {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--logo-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.photo-placeholder i {
    font-size: 3rem;
    color: var(--text-dark);
}

.socio-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.socio-role {
    color: var(--logo-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.socio-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.linkedin-link:hover {
    color: var(--logo-color);
}

/* Contato */
.contato-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(181, 201, 212, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(181, 201, 212, 0.2);
    transition: var(--transition);
}

.info-item:hover {
    background: rgba(181, 201, 212, 0.15);
    transform: translateX(10px);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--logo-color);
    width: 50px;
    text-align: center;
}

.info-item h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
}

.info-item p {
    color: var(--text-light);
}

/* Formulário */
.contato-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(181, 201, 212, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(181, 201, 212, 0.3);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(181, 201, 212, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
    background: rgba(43, 54, 70, 0.9);
    padding: 0 0.5rem;
}

.form-group input + label,
.form-group textarea + label {
    opacity: 0;
    transform: translateY(-10px);
}

.form-group input:focus + label,
.form-group textarea:focus + label {
    opacity: 0;
    transform: translateY(-10px);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Esconder WhatsApp quando menu mobile estiver aberto */
body.mobile-menu-open .whatsapp-btn {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    pointer-events: none;
}

/* Esconder WhatsApp no mobile */
@media (max-width: 768px) {
    .whatsapp-btn {
        display: none;
    }
}

/* Footer */
.footer {
    background: rgba(26, 35, 50, 0.8);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(181, 201, 212, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 80px;
    width: auto;
    max-width: 150px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: var(--transition);
}

.footer-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-main {
    text-align: center;
    grid-column: 1 / -1;
    margin-bottom: 2rem;
}

.footer-tagline {
    color: var(--accent-color);
    font-size: 10px;
    font-weight: 200;
    margin-top: 0px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-section h3,
.footer-section h4 {
    color: var(--logo-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(181, 201, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.footer-links {
    text-align: center;
    grid-column: 1 / -1;
}

.footer-links-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.company-linkedin {
    text-align: center;
    margin-top: 1.5rem;
}

.company-linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(181, 201, 212, 0.1);
    border-radius: 50%;
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(181, 201, 212, 0.3);
}

.company-linkedin-link:hover {
    background: #0077b5;
    color: var(--white);
    border-color: #0077b5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}

.company-linkedin-link i {
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(181, 201, 212, 0.2);
    color: var(--text-light);
}

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--primary-bg);
    border: 1px solid rgba(181, 201, 212, 0.2);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--accent-color);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--white);
}

/* Barra de Notificação LGPD */
.lgpd-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #1a2332 100%);
    border-top: 2px solid var(--accent-color);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lgpd-notification.show {
    transform: translateY(0);
}

.lgpd-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.lgpd-text {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
}

.lgpd-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.lgpd-message {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.lgpd-message a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: var(--transition);
}

.lgpd-message a:hover {
    color: var(--logo-color);
}

.lgpd-accept {
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--logo-color), var(--accent-color));
    color: var(--text-dark);
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.lgpd-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(189, 172, 142, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .logo img {
        height: 50px;
        max-width: 150px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .quem-somos-content {
        gap: 2rem;
    }
    
    .quem-somos-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .socios-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .socios-grid .socio-card {
        width: 100%;
        max-width: 350px;
    }
    
    .nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .footer-logo img {
        height: 60px;
        max-width: 120px;
    }
    
    .footer-tagline {
        font-size: 1rem;
    }
    
    #quem-somos {
        background-attachment: scroll;
    }
    
    .lgpd-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .lgpd-text {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .lgpd-message {
        font-size: 0.85rem;
    }
    
    .lgpd-accept {
        width: 100%;
        max-width: 150px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo img {
        height: 40px;
        max-width: 120px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .service-card,
    .socio-card,
    .contato-form {
        padding: 1.5rem;
    }
    
    .footer-logo img {
        height: 50px;
        max-width: 100px;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .quem-somos-stats {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        padding: 0 1rem;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .quem-somos-stats::-webkit-scrollbar {
        display: none;
    }
    
    .quem-somos-stats .stat {
        min-width: 250px;
        max-width: 250px;
        flex-shrink: 0;
        padding: 1.5rem;
        scroll-snap-align: start;
    }
    
    .quem-somos-stats .stat h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .quem-somos-stats .stat p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    
    .services-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        padding: 0 1rem;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .services-grid::-webkit-scrollbar {
        display: none;
    }
    
    .services-grid .service-card {
        min-width: 280px;
        max-width: 280px;
        flex-shrink: 0;
        padding: 1.5rem;
        scroll-snap-align: start;
    }
    
    .services-grid .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .services-grid .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .services-grid .service-card ul {
        margin-top: 1rem;
    }
    
    .services-grid .service-card li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
        padding-left: 1.5rem;
        position: relative;
    }
    
    .services-grid .service-card li::before {
        position: absolute;
        left: 0;
        top: 0.3rem;
    }
    
    /* Remover hovers no mobile */
    .service-card:hover,
    .socio-card:hover,
    .stat:hover {
        transform: none;
        box-shadow: none;
        border-color: rgba(181, 201, 212, 0.2);
    }
    
    .service-card::before {
        display: none;
    }
    
    
    .footer-links-container {
        flex-direction: column;
        gap: 1rem;
    }
}
