:root {
    --bg-primary: #F7F3EB;
    --bg-secondary: #E8E0D1;
    --card-surface: #FFFFFF;
    --accent-coral: #FF7F50;
    --accent-coral-hover: #E66A3A;
    --text-dark: #1A202C;
    --text-light: #4A5568;
    --seafoam-green: #CFFAD6;
    --ocean-blue: #007B8A;
    --font-display: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-display);
    background-color: var(--bg-primary);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--accent-coral);
    color: white;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #D1C7B3;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    border-bottom: 1px solid var(--bg-secondary);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.logo .material-symbols-outlined {
    color: var(--accent-coral);
    font-size: 1.875rem;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
}

.btn-whatsapp {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--accent-coral);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(255, 127, 80, 0.2);
}

.btn-whatsapp:hover {
    background-color: var(--accent-coral-hover);
}

@media (min-width: 640px) {
    .btn-whatsapp {
        display: flex;
    }
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 640px) {
    .menu-toggle {
        display: none;
    }
}

.hero {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 4rem;
    overflow: hidden;
    background-color: var(--bg-primary);
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 7rem;
        padding-bottom: 6rem;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
    background-image: radial-gradient(circle at center, rgba(255, 127, 80, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero .container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: var(--card-surface);
    border: 1px solid var(--bg-secondary);
    margin-bottom: 2rem;
}

.status-indicator {
    display: block;
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 9999px;
    background-color: var(--seafoam-green);
}

.status-badge span:last-child {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-coral) 0%, var(--ocean-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    margin-top: 1rem;
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
    line-height: 1.625;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s;
    width: 100%;
}

@media (min-width: 640px) {
    .btn-primary,
    .btn-secondary {
        width: auto;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-coral) 0%, var(--ocean-blue) 100%);
    color: white;
    box-shadow: 0 20px 50px rgba(255, 127, 80, 0.25);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-4px);
}

.btn-secondary {
    background-color: var(--card-surface);
    border: 1px solid var(--bg-secondary);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--bg-secondary);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-color: rgba(255, 127, 80, 0.1);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -10;
}

.trust-section {
    border-top: 1px solid var(--bg-secondary);
    border-bottom: 1px solid var(--bg-secondary);
    background-color: rgba(232, 224, 209, 0.5);
    padding: 2.5rem 0;
}

.trust-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    text-align: center;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0.7;
    filter: grayscale(1);
    transition: all 0.5s;
}

.trust-logos:hover {
    filter: grayscale(0);
}

@media (min-width: 768px) {
    .trust-logos {
        gap: 4rem;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.trust-icon.tech {
    background-color: rgba(0, 123, 138, 0.7);
}

.trust-icon.eco {
    background-color: rgba(207, 250, 214, 0.7);
    color: var(--ocean-blue);
}

.trust-icon.build {
    background-color: rgba(255, 127, 80, 0.7);
}

.trust-icon.retail {
    background-color: rgba(0, 123, 138, 0.7);
}

.trust-name {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-dark);
    display: none;
}

@media (min-width: 640px) {
    .trust-name {
        display: block;
    }
}

.portfolio-section {
    padding: 6rem 0;
    background-color: var(--bg-primary);
    position: relative;
}

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

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
}

.section-header p {
    color: var(--text-light);
    max-width: 42rem;
    margin: 0 auto;
}

.divider {
    height: 4px;
    width: 5rem;
    background-color: var(--accent-coral);
    border-radius: 9999px;
}

.project-card {
    background-color: var(--card-surface);
    border-radius: 1rem;
    border: 1px solid var(--bg-secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    transition: all 0.5s;
}

.project-card:hover {
    box-shadow: 0 20px 60px rgba(255, 127, 80, 0.1);
}

@media (min-width: 768px) {
    .project-card {
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .project-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.project-mockup {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: var(--bg-primary);
    border: 1px solid var(--bg-secondary);
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.5s;
}

.project-card:hover .project-mockup {
    box-shadow: 0 10px 30px rgba(255, 127, 80, 0.2);
}

.mockup-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.mockup-devices {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}

.device-laptop {
    width: 16rem;
    height: 10rem;
    background-color: var(--bg-secondary);
    border-radius: 0.5rem 0.5rem 0 0;
    border-top: 4px solid rgba(232, 224, 209, 0.8);
    border-left: 4px solid rgba(232, 224, 209, 0.8);
    border-right: 4px solid rgba(232, 224, 209, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.5rem;
}

.device-laptop .material-symbols-outlined {
    font-size: 2.5rem;
    color: rgba(74, 85, 104, 0.5);
}

.device-mobile {
    width: 4rem;
    height: 7rem;
    background-color: var(--bg-secondary);
    border-radius: 0.5rem;
    border: 4px solid rgba(232, 224, 209, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -0.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.device-mobile .material-symbols-outlined {
    font-size: 1.5rem;
    color: rgba(74, 85, 104, 0.5);
}

.mockup-icon {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-icon .material-symbols-outlined {
    font-size: 5rem;
    color: rgba(74, 85, 104, 0.5);
    transition: all 0.3s;
}

.project-card:hover .mockup-icon .material-symbols-outlined {
    color: var(--accent-coral);
}

.project-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.project-icon {
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: var(--ocean-blue);
}

.project-icon.hospitality,
.project-icon.corporate {
    background-color: rgba(0, 123, 138, 0.1);
}

.project-category {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ocean-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
}

.project-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    border-top: 1px solid var(--bg-secondary);
    padding-top: 1.5rem;
}

.detail-block h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.detail-block p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.625;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-coral);
    font-weight: 700;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: all 0.3s;
}

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

.project-link .material-symbols-outlined {
    font-size: 1rem;
    transition: transform 0.3s;
}

.project-link:hover .material-symbols-outlined {
    transform: translateX(4px);
}

.services-section {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(247, 243, 235, 0.2), transparent);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.pricing-card {
    background-color: var(--card-surface);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--bg-secondary);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    border-color: rgba(0, 123, 138, 0.4);
}

.pricing-card.featured {
    border: 2px solid var(--accent-coral);
    position: relative;
    box-shadow: 0 20px 50px rgba(255, 127, 80, 0.1);
}

.featured-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--accent-coral);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.pricing-header .material-symbols-outlined {
    color: rgba(74, 85, 104, 0.5);
}

.pricing-card.featured .pricing-header .material-symbols-outlined {
    color: var(--accent-coral);
}

.pricing-desc {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    min-height: 2.5rem;
}

.pricing-price {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.pricing-price.accent {
    color: var(--text-dark);
}

.pricing-price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.pricing-features .material-symbols-outlined {
    color: var(--seafoam-green);
    font-size: 1.125rem;
}

.pricing-features .material-symbols-outlined.accent {
    color: var(--accent-coral);
}

.btn-pricing {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid var(--bg-secondary);
    background-color: transparent;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-pricing:hover {
    background-color: var(--bg-secondary);
}

.btn-pricing.featured {
    background-color: var(--accent-coral);
    border-color: var(--accent-coral);
    color: white;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(255, 127, 80, 0.25);
}

.btn-pricing.featured:hover {
    background-color: var(--accent-coral-hover);
}

.about-section {
    padding: 6rem 0;
    background-color: var(--bg-primary);
}

.about-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

@media (min-width: 768px) {
    .about-grid {
        flex-direction: row;
    }
}

.about-image {
    flex-shrink: 0;
    position: relative;
}

.avatar {
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--bg-secondary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    background-color: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .avatar {
        width: 20rem;
        height: 20rem;
    }
}

.avatar .material-symbols-outlined {
    font-size: 7.5rem;
    color: rgba(74, 85, 104, 0.5);
}

.avatar-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.glow-left {
    top: 2.5rem;
    left: -2.5rem;
    width: 5rem;
    height: 5rem;
    background-color: var(--accent-coral);
    opacity: 0.5;
}

.glow-right {
    bottom: 2.5rem;
    right: -2.5rem;
    width: 8rem;
    height: 8rem;
    background-color: var(--ocean-blue);
    opacity: 0.4;
}

.about-content {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .about-content {
        text-align: left;
    }
}

.about-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.625;
}

.about-text strong {
    color: var(--text-dark);
}

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

@media (min-width: 768px) {
    .credentials {
        justify-content: flex-start;
    }
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--card-surface);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--bg-secondary);
}

.credential-item .material-symbols-outlined {
    color: var(--accent-coral);
}

.credential-item span:last-child {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
}

.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(232, 224, 209, 0.8);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
    background-image: radial-gradient(circle at center, var(--accent-coral) 0%, transparent 70%);
}

.footer .container {
    position: relative;
    z-index: 10;
    max-width: 64rem;
}

.footer-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .footer-title {
        font-size: 3rem;
    }
}

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

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--accent-coral) 0%, var(--ocean-blue) 100%);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1.25rem 2.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    box-shadow: 0 20px 50px rgba(255, 127, 80, 0.4);
    transition: all 0.3s;
}

.btn-cta:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.btn-cta .material-symbols-outlined {
    font-size: 1.875rem;
}

.footer-info {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-social a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--text-dark);
}
