/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF5722;
    --secondary-color: #08d259;
    --dark-color: #2b2b2b;
    --light-color: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight-red {
    color: var(--primary-color);
    font-weight: 700;
}

.highlight-green {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e1e1e 0%, #2b2b2b 100%);
    color: var(--white);
    padding: 120px 20px 140px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

/* Video Container */
.video-container {
    margin: 3rem auto 2rem;
    animation: fadeInUp 1s ease 0.4s both;
    max-width: 900px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Buttons */
.cta-button {
    background: var(--secondary-color);
    color: var(--white);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(8, 210, 89, 0.3);
    margin: 30px auto 20px;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    z-index: 3;
    text-decoration: none !important;
    text-align: center;
}

.cta-button:hover {
    background: #06b047;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(8, 210, 89, 0.4);
    text-decoration: none !important;
}

.cta-button.large {
    padding: 22px 50px;
    font-size: 1.3rem;
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Sections */
section {
    padding: 80px 20px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.section-subtitle,
.subsection-title {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

/* Section Divider */
.section-divider {
    max-width: 1200px;
    margin: 0 auto;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--dark-color) 0,
        var(--dark-color) 10px,
        transparent 10px,
        transparent 20px
    );
    opacity: 0.3;
}

/* Services Complete Section */
.services-complete {
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.service-item {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-icon svg {
    width: 60px;
    height: 60px;
}

.service-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-color);
}

.services-complete .cta-button {
    display: block;
    margin: 3rem auto 0;
    max-width: fit-content;
}

/* Method Section */
.method {
    background: var(--white);
}

.method-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.method-step {
    background: var(--light-color);
    padding: 35px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.method-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--primary-color);
    color: var(--white);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.method-step:hover .step-number {
    background: var(--white);
    color: var(--primary-color);
}

.method-step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.method-step:hover h3 {
    color: var(--white);
}

.method-step p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Why Invest Section */
.why-invest {
    background: var(--light-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
    align-items: center;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check-icon {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.benefit-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.benefit-image img:hover {
    transform: scale(1.05);
}

/* Carousel */
.carousel-container {
    margin: 3rem 0;
    overflow: hidden;
}

.carousel {
    display: flex;
    gap: 20px;
    animation: scroll 20s linear infinite;
}

.carousel-item {
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-item:hover img {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-320px * 4));
    }
}

/* Advantages Section */
.advantages {
    background: var(--white);
}

.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
    justify-content: center;
}

.advantage-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 1 calc(33.333% - 2rem);
    max-width: calc(33.333% - 2rem);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.advantage-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 110px;
    width: 100%;
}

.advantage-icon svg {
    width: 80px;
    height: 80px;
    display: block;
}

.advantage-card p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.advantages .cta-button {
    display: block;
    margin: 3rem auto 0;
    max-width: fit-content;
}

/* Profitability Section */
.profitability {
    background: var(--light-color);
}

.profit-example {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
    align-items: center;
}

.profit-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.profit-details h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.profit-list {
    list-style: none;
}

.profit-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #e0e0e0;
}

.profit-list strong {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Valorization Proof */
.valorization-proof {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    margin: 3rem 0;
    box-shadow: var(--shadow);
}

.cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.case-item {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.case-item:hover {
    transform: scale(1.05);
}

.case-item h4 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.percentage {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Client Testimonial */
.client-testimonial {
    margin: 3rem 0;
    text-align: center;
}

.client-testimonial h3 {
    margin-bottom: 2rem;
}

.video-testimonial {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.video-testimonial iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Testimonials Carousel */
.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 2rem 0;
}

.testimonial-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-10px);
}

.testimonial-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Investment Highlight */
.investment-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #9a0f06 100%);
    color: var(--white);
    padding: 50px;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.investment-highlight h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.investment-highlight p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Comparison Section */
.comparison {
    background: var(--white);
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
    justify-content: center;
}

.comparison-item {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    flex: 0 1 calc(33.333% - 2rem);
    max-width: calc(33.333% - 2rem);
}

.comparison-item:hover {
    transform: translateY(-5px);
    background: var(--secondary-color);
    color: var(--white);
}

.comparison-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.comparison-item:hover .comparison-icon {
    color: var(--white);
}

/* Investment Amount */
.investment-amount {
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    margin: 3rem 0;
}

.investment-amount h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.amount-info ul {
    list-style: none;
}

.amount-info li {
    padding: 12px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bullet {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.investment-amount .cta-button {
    display: block;
    margin: 3rem auto 0;
    max-width: fit-content;
}

.leverage-info {
    margin-top: 2rem;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.leverage-info h4 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.leverage-info p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* About Section */
.about {
    background: var(--light-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    margin: 3rem 0;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
}

.about-content h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-content .cta-button {
    display: block;
    margin: 2.5rem 0 2rem;
}

.social-links {
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.social-link svg {
    fill: var(--white);
}

.social-link:hover {
    background: #b01006;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(210, 20, 8, 0.4);
}

/* Portfolio Section */
.portfolio {
    background: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.portfolio-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.portfolio-card.hover-effect {
    cursor: pointer;
}

.portfolio-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: var(--white);
    padding: 30px 20px 20px;
}

.portfolio-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.portfolio-info p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Blur effect on hover */
.portfolio-grid:hover .portfolio-card:not(:hover) {
    filter: blur(3px) grayscale(0.3);
    transform: scale(0.98);
}

/* Amenities Section */
.amenities-section {
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
    margin: 3rem 0;
}

.amenities-section h3,
.amenities-section h4 {
    text-align: center;
    margin-bottom: 2rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.amenity-item {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.building-amenities {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
}

.building-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.building-item {
    padding: 15px;
    background: var(--light-color);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.building-item:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #2b2b2b 0%, #1e1e1e 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.footer-contact p,
.footer-social a {
    margin: 10px 0;
}

.footer-social a {
    color: var(--white);
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-grid,
    .profit-example,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantage-card:nth-child(4),
    .advantage-card:nth-child(5) {
        grid-column: auto;
    }

    .advantage-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-item:nth-child(4),
    .comparison-item:nth-child(5) {
        grid-column: auto;
    }

    .comparison-item:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .cases {
        grid-template-columns: 1fr;
    }

    .testimonials-carousel {
        grid-template-columns: repeat(2, 1fr);
    }

    .building-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .subsection-title {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .method-steps {
        grid-template-columns: 1fr;
    }

    .advantage-card {
        flex: 0 1 100%;
        max-width: 100%;
    }

    .comparison-item {
        flex: 0 1 100%;
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-carousel {
        grid-template-columns: 1fr;
    }

    .building-list {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 15px 80px;
        min-height: auto;
    }

    section {
        padding: 60px 15px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-button.large {
        padding: 18px 35px;
        font-size: 1.1rem;
    }
}
