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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Color Variables */
:root {
    --primary-gray: #6b7280;
    --light-gray: #d1d5db;
    --dark-gray: #374151;
    --medium-gray: #e5e7eb;
    --yellow: #fbbf24;
    --light-yellow: #fef3c7;
    --dark-yellow: #d97706;
    --whatsapp-green: #25d366;
    --white: #ffffff;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

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

.logo {
    width: 60px;
    height: 60px;
    background: url('imagens/logo.png') center/contain no-repeat;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-gray);
    cursor: pointer;
    order: 2;
}

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

.nav a {
    text-decoration: none;
    color: var(--primary-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    background: url('imagens/fundo.jpeg') center/cover no-repeat;
}



.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: none;
    line-height: 1.1;
}

.hero-text h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--light-gray);
    text-shadow: none;
    line-height: 1.6;
}

.hero-images {
    position: relative;
    height: 500px;
}

.main-image {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: url('imagens/espaco.jpg') center/cover;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
}

.secondary-image {
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 60%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 4px solid white;
    background: url('imagens/espaco3.jpg') center/cover;
}

.secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--whatsapp-green);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-button:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.cta-button .whatsapp-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-image: url('imagens/whatsapp.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.location .cta-center .cta-button {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.location .cta-center .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-gray);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.service-card:nth-child(1) .service-image {
    background: url('imagens/coworking.jpg') center/cover;
}

.service-card:nth-child(2) .service-image {
    background: url('imagens/salaprivativa.jpg') center/cover;
}

.service-card:nth-child(3) .service-image {
    background: url('imagens/enderecopro.jpg') center/cover;
}

.service-card:nth-child(4) .service-image {
    background: url('imagens/espaco.jpg') center/cover;
}

.service-card:nth-child(5) .service-image {
    background: url('imagens/evento.jpg') center/cover;
}

.service-card:nth-child(6) .service-image {
    background: url('imagens/evento2.jpg') center/cover;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    opacity: 0;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brown);
    padding: 20px 20px 10px;
}

.service-card p {
    padding: 0 20px 30px;
    color: var(--primary-gray);
    line-height: 1.6;
}

/* Differentials Section */
.differentials {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.differential-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: var(--white);
    border: 2px solid var(--secondary-yellow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.differential-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.differential-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary-yellow);
}

.differential-icon svg {
    width: 48px;
    height: 48px;
    fill: currentColor;
}

.differential-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.differential-item p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

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

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: var(--yellow);
    font-weight: bold;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.7;
    color: var(--primary-gray);
    margin-bottom: 20px;
}

.testimonial-author {
    text-align: right;
    color: var(--brown);
    font-weight: 600;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: url('imagens/sobrenos.jpg') center/cover;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

/* Location Section */
.location {
    padding: 80px 0;
    background: #f5f5f5;
}

.location .section-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.location .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container {
    height: 500px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    padding: 40px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-section {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.info-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    color: white;
    position: relative;
    z-index: 10;
}

.icon-place {
    background-image: url('imagens/place.png');
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-time {
    background-image: url('imagens/time.png');
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-whatsapp {
    background-image: url('imagens/whatsapp.png');
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.whatsapp-icon {
    width: 32px;
    height: 32px;
    background-image: url('imagens/whatsapp.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
}

.info-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.info-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.address-link, .contact-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.address-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-link {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .location {
        padding: 60px 0;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 300px;
        order: 2;
    }
    
    .location-info {
        padding: 30px 20px;
        order: 1;
    }
    
    .info-section {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    
    .info-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .info-content h3 {
        font-size: 1.1rem;
    }
    
    .info-content p {
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--yellow);
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    font-weight: 600;
    color: var(--yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }
    
    .logo {
        width: 45px;
        height: 45px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        gap: 15px;
    }
    
    .nav.active {
        display: flex;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 60px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        order: 1;
        display: flex;
        flex-direction: column;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.1;
        order: 1;
    }
    
    .hero-text h2 {
        font-size: 1.2rem;
        order: 2;
    }
    
    .hero-text .cta-button {
        order: 3;
        align-self: center;
        margin-top: 30px;
        margin-bottom: 0;
    }
    
    .hero-images {
        order: 2;
        height: 400px;
    }
    
    .main-image {
        height: 280px;
    }
    
    .secondary-image {
        right: -15px;
        width: 50%;
        height: 150px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .differentials-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 70px 0 40px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-text h2 {
        font-size: 1rem;
    }
    
    .logo {
        width: 40px;
        height: 40px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .hero-images {
        height: 300px;
    }
    
    .main-image {
        height: 220px;
    }
    
    .secondary-image {
        right: -10px;
        width: 45%;
        height: 120px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .services,
    .differentials,
    .testimonials,
    .about,
    .location {
        padding: 60px 0;
    }
}

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

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

.service-card,
.differential-item,
.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
