* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lexend', sans-serif;
    color: #ffffff;
    background-color: #252525;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
    background: #128C7E;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

.whatsapp-icon {
    width: 40px;
    height: 40px;
    z-index: 2;
    position: relative;
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.7;
    animation: whatsapp-pulse 1.5s ease-out infinite;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #252525;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #252525;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Hero Section */
.hero {
    background-color: #2e2e2e;
    padding: 50px 0 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-logo {
    text-align: left;
    margin-bottom: 50px;
}

.hero-logo img {
    max-width: 280px;
    height: auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-image {
    position: relative;
    z-index: 10;
    text-align: right;
}

.hero-floating-image {
    width: 70%;
    height: auto;
    aspect-ratio: 339 / 668;
    border-radius: 12px;
    animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cca967;
    margin-bottom: 15px;
    font-weight: 500;
}

.solution {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.hero-image .image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #3a3a3a;
    border-radius: 10px;
}

/* Why Invest Section */
.why-invest {
    background-color: #252525;
    padding-top: 120px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #cca967;
    color: #252525;
    padding: 16px 40px;
    min-height: 48px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    background-color: #b89654;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 169, 103, 0.3);
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #cca967;
    padding: 16px 40px;
    min-height: 48px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #cca967;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button-secondary:hover {
    background-color: #cca967;
    color: #252525;
}

.cta-button-large {
    display: inline-block;
    background-color: #cca967;
    color: #252525;
    padding: 18px 45px;
    min-height: 48px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(204, 169, 103, 0.4);
    text-align: center;
}
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: #b89654;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(204, 169, 103, 0.4);
}

/* Sections */
section {
    padding: 80px 0;
}

/* Otimização para seções fora da viewport inicial */
section:not(.hero) {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.why-invest {
    background-color: #252525;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: #ffffff;
    color: #252525;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    min-height: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(204, 169, 103, 0.2);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: #cca967;
    stroke-width: 1.5;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Card Gold Variant */
.card-gold {
    background-color: #cca967;
    color: #252525;
}

.card-gold .card-icon {
    color: #252525;
}

.card-gold h3 {
    color: #252525;
}

.card-gold p {
    color: #1a1a1a;
}

.card-gold:hover {
    background-color: #b89654;
}

/* Benefits Section */
.benefits {
    background-color: #2e2e2e;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.benefit-card {
    background-color: #252525;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateX(5px);
}

.check-icon {
    color: #cca967;
    font-size: 1.5rem;
    font-weight: 400;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon {
    color: #cca967;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #b0b0b0;
}

/* Why Us Section */
.why-us {
    background-color: #252525;
}

/* Portfolio Section */
.portfolio {
    background-color: #2e2e2e;
}

.portfolio-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-top: -30px;
    margin-bottom: 50px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.portfolio-item {
    background-color: #252525;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-image {
    cursor: pointer;
    overflow: hidden;
}

.portfolio-image .image-placeholder {
    width: 100%;
    height: 287px;
    aspect-ratio: 16 / 9;
    background-color: #3a3a3a;
    transition: transform 0.3s ease;
}

.portfolio-image:hover .image-placeholder {
    transform: scale(1.05);
}

.portfolio-item h3 {
    padding: 20px 25px 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.portfolio-item p {
    padding: 0 25px 25px;
    color: #b0b0b0;
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
    background-color: #252525;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background-color: #ffffff;
    color: #252525;
    padding: 40px 30px;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid #cca967;
}

.pricing-card.premium {
    border: 3px solid #b89654;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #cca967;
    color: #252525;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.premium-badge {
    background-color: #b89654;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.price {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #666;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b6f2e;
}

.price-note {
    font-size: 0.85rem;
    color: #666;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
    position: relative;
    padding-left: 25px;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #cca967;
    font-weight: bold;
}

/* Garantir áreas de toque adequadas para todos os links e botões */
.pricing-card .cta-button-secondary,
.pricing-card .cta-button {
    margin-top: 10px;
    min-height: 48px;
}

a[href^="mailto:"],
a[href^="tel:"],
a[href^="https://wa.me/"],
a[href^="https://maps."] {
    padding: 12px 10px;
    min-height: 48px;
    display: inline-block;
}

/* Espaçamento entre elementos clicáveis adjacentes */
.cta-button + .cta-button,
.cta-button-secondary + .cta-button-secondary,
a + a {
    margin-left: 16px;
}

/* Espaçamento vertical entre links */
.contact-card a,
.footer-menu li {
    margin-bottom: 16px;
}

/* Área de toque específica para footer */
.footer-contact-info a,
.footer-menu a {
    padding: 12px 8px;
    min-height: 48px;
    display: inline-block;
}

.cta-center {
    text-align: center;
}

/* Process Section */
.process {
    background-color: #2e2e2e;
}

.process-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-top: -30px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.process-card {
    background-color: #252525;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: #cca967;
    color: #252525;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-card p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

/* Process Card Gold Variant */
.process-card-gold {
    background-color: #cca967;
}

.process-card-gold .process-number {
    background-color: #252525;
    color: #cca967;
}

.process-card-gold h3 {
    color: #252525;
}

.process-card-gold p {
    color: #1a1a1a;
}

.process-card-gold:hover {
    background-color: #b89654;
}

/* FAQ Section */
.faq {
    background-color: #252525;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #2e2e2e;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Lexend', sans-serif;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #353535;
}

.faq-icon {
    font-size: 1.5rem;
    color: #cca967;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #b0b0b0;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Final CTA Section */
.final-cta {
    background-color: #2e2e2e;
    text-align: center;
    padding: 100px 0;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.final-cta p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    padding: 60px 0 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    max-width: 220px;
    height: auto;
}

.footer-about p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #252525;
    border-radius: 50%;
    color: #cca967;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #cca967;
    color: #1a1a1a;
    transform: translateY(-3px);
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-menu li a:hover {
    color: #cca967;
    padding-left: 5px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-info svg {
    color: #cca967;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-info a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.footer-contact-info a:hover {
    color: #cca967;
}

.footer-contact-info span {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #2e2e2e;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 50px 0 25px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-logo img {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 40px 0 20px 0;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .footer-logo img {
        max-width: 160px;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #cca967;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 50px 0 100px 0;
    }

    .hero-floating-image {
        border-radius: 8px;
    }

    .hero-image {
        text-align: center;
    }

    @keyframes floatHero {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    .why-invest {
        padding-top: 80px;
    }

    .hero-logo {
        text-align: center;
    }

    .hero-logo img {
        max-width: 200px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-image .image-placeholder {
        height: 300px;
    }

    section h2 {
        font-size: 2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }

    .whatsapp-icon {
        width: 34px;
        height: 34px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .whatsapp-pulse {
        animation: whatsapp-pulse 1.8s ease-out infinite;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .final-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0 80px 0;
    }

    .why-invest {
        padding-top: 60px;
    }

    .hero-floating-image {
        border-radius: 6px;
    }

    .hero-image {
        text-align: center;
    }

    .hero-logo img {
        max-width: 160px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-text h1 {
        font-size: 1.6rem;
    }

    section {
        padding: 50px 0;
    }

    .cta-button, .cta-button-secondary {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .cta-button-large {
        padding: 18px 35px;
        font-size: 1rem;
    }
}

/* Header Menu */
.header-menu {
    background-color: #252525;
    padding: 20px 0;
    border-bottom: 2px solid #cca967;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-menu img {
    max-width: 200px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #cca967;
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #cca967;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #cca967;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Internal */
.hero-internal {
    padding: 100px 0;
    min-height: 400px;
}

.hero-internal-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-internal-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-internal-content .hero-subtitle {
    font-size: 1.3rem;
    color: #cca967;
}

/* About Section */
.about-section {
    background-color: #252525;
    padding: 80px 0;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* MVV Section */
.mvv-section {
    background-color: #2e2e2e;
    padding: 80px 0;
}

/* Differentials Section */
.differentials-section {
    background-color: #252525;
    padding: 80px 0;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background-color: #252525;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: right 0.3s ease;
        border-left: 2px solid #cca967;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li a {
        font-size: 1.1rem;
    }

    .logo-menu img {
        max-width: 150px;
    }

    .hero-internal-content h1 {
        font-size: 2rem;
    }

    .hero-internal-content .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .hero-internal {
        padding: 60px 0;
    }

    .hero-internal-content h1 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 1rem;
    }
}

/* Portfolio Intro */
.portfolio-intro {
    background-color: #252525;
    padding: 60px 0;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.intro-content strong {
    color: #cca967;
    font-weight: 600;
}

/* Portfolio Full */
.portfolio-full {
    background-color: #2e2e2e;
    padding: 80px 0;
}

.portfolio-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.portfolio-item-full {
    background-color: #252525;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item-full:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(204, 169, 103, 0.2);
}

.portfolio-image-full {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 280px;
}

.portfolio-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item-full:hover .portfolio-image-full img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(204, 169, 103, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item-full:hover .portfolio-overlay {
    opacity: 1;
}

.view-project {
    color: #252525;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-info {
    padding: 30px;
}

.portfolio-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
}

.portfolio-info p {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background-color: #2e2e2e;
    color: #cca967;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #cca967;
}

/* Results Section */
.results-section {
    background-color: #252525;
    padding: 80px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.result-card {
    text-align: center;
    padding: 30px;
    background-color: #2e2e2e;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
}

.result-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #cca967;
    margin-bottom: 10px;
}

.result-card p {
    font-size: 1.1rem;
    color: #e0e0e0;
    font-weight: 500;
}

/* Responsive Portfolio */
@media (max-width: 768px) {
    .portfolio-grid-full {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .portfolio-image-full {
        height: 220px;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .result-number {
        font-size: 2.5rem;
    }

    .intro-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .portfolio-info {
        padding: 20px;
    }

    .portfolio-info h3 {
        font-size: 1.2rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .result-number {
        font-size: 2.8rem;
    }
}

/* Contact Section */
.contact-section {
    background-color: #252525;
    padding: 80px 0;
}

.contact-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.contact-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card {
    background-color: #2e2e2e;
    padding: 45px 35px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(204, 169, 103, 0.2);
}

.contact-icon {
    margin-bottom: 25px;
}

.contact-icon svg {
    color: #cca967;
    stroke-width: 1.5;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

.contact-link {
    display: inline-block;
    font-size: 1.2rem;
    color: #cca967;
    text-decoration: none;
    margin-bottom: 20px;
    padding: 12px 10px;
    min-height: 48px;
    font-weight: 600;
    transition: color 0.3s ease;
    line-height: 1.6;
    text-align: center;
}

.contact-link:hover {
    color: #b89654;
}

.contact-card p {
    font-size: 0.95rem;
    color: #b0b0b0;
}

/* Schedule Section */
.schedule-section {
    background-color: #2e2e2e;
    padding: 80px 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 50px auto 0;
}

.schedule-item {
    background-color: #252525;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #3a3a3a;
    transition: border-color 0.3s ease;
}

.schedule-item:hover {
    border-color: #cca967;
}

.schedule-day {
    font-size: 1.3rem;
    font-weight: 600;
    color: #cca967;
    margin-bottom: 15px;
}

.schedule-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

/* CTA WhatsApp Section */
.cta-whatsapp-section {
    background-color: #252525;
    padding: 80px 0;
    text-align: center;
}

.cta-whatsapp-section h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-whatsapp-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-whatsapp-buttons {
    display: flex;
    justify-content: center;
}

.cta-whatsapp-buttons .cta-button-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-whatsapp-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 30px;
        text-align: center;
    }

    .cta-whatsapp-icon {
        display: flex;
        justify-content: center;
    }

    .cta-whatsapp-text h2 {
        font-size: 1.8rem;
    }

    .cta-whatsapp-section h2 {
        font-size: 2rem;
    }

    .cta-whatsapp-subtitle {
        font-size: 1.1rem;
    }

    .contact-link {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 30px 20px;
    }

    .contact-card h3 {
        font-size: 1.3rem;
    }

    .schedule-item {
        padding: 25px 20px;
    }

    .schedule-day {
        font-size: 1.1rem;
    }

    .schedule-time {
        font-size: 1.3rem;
    }

    .cta-whatsapp-content {
        padding: 30px 20px;
    }

    .cta-whatsapp-text h2 {
        font-size: 1.5rem;
    }

    .cta-whatsapp-text p {
        font-size: 1rem;
    }

    .cta-whatsapp-icon svg {
        width: 60px;
        height: 60px;
    }

    .cta-whatsapp-section h2 {
        font-size: 1.6rem;
    }

    .cta-whatsapp-subtitle {
        font-size: 1rem;
    }
}

/* Font Display Optimization */
@font-face {
    font-family: 'Lexend';
    font-display: swap;
}
