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

:root {
    --black: #1a1a1a;
    --white: #FFFFFF;
    --gray: #2a2a2a;
    --light-gray: #f5f5f5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    line-height: 1.8;
    overflow-x: hidden;
    background-color: whitesmoke;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.02) 100%);
    background-attachment: fixed;
    z-index: -1;
}

header {
    position: sticky;
    top: 0;
    background: rgba(245, 242, 242, 0.007);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--black);
    padding: 1.5rem 2rem;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.041);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img-actual {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 4px;
}

.logo {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--black);
    text-transform: uppercase;
    animation: fadeInDown 0.8s ease-out;
}

nav {
    display: flex;
    gap: 3rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--black);
    font-weight: 700;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 1px;
    font-size: 1.2rem;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--black);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    background-image: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%),
        url('background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: darken;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.hero h1 {
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(2rem, 6vw, 4.4rem);
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--white);
    line-height: 1.1;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.3rem;
    color: #f0f0f0;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    margin: 0 0.5rem;
    border-radius: 10px;
    margin-top: 5px;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    background: var(--black);
    color: var(--white);
    border-color: var(--white);
}

.portfolio {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: var(--white);
}

.section-title {
    font-family: 'Bodoni Moda', serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--black);
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    border-radius: 4px;
}

.portfolio-item-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.portfolio-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-item:hover .portfolio-item-image {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(50, 50, 50, 0.95));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 10;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: #ddd;
    font-size: 0.95rem;
}

.about {
    padding: 8rem 2rem;
    background: var(--light-gray);
    position: relative;
    z-index: 2;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text .section-title {
    text-align: center;
}

.about-text .section-subtitle {
    text-align: center;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.ceo-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}
.portfolio-item-image img {
    width: 110%;
    height: 110%;
    object-fit: cover;
    transform: translate(-6%, -6%);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.portfolio-item-image::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 18%;
    height: 16%;
    background: linear-gradient(135deg, rgba(255,255,255,0.0), rgba(245,245,245,0.95));
    pointer-events: none;
}

.about p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 2;
}

footer {
    background: var(--black);
    color: var(--white);
    padding: 5rem 2rem 3rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #333;
}

.footer-info p {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 1rem;
}

.socials-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
 
.socials-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
 
.socials-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 900px) {
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
        justify-content: center;
    }

    .about-text {
        text-align: center;
    }

    .about-text .section-title,
    .about-text .section-subtitle {
        text-align: center;
    }

    .ceo-img {
        max-width: 320px;
        width: 80%;
    }
}
 
.s-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}
 
.s-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.18s ease;
  border-radius: inherit;
}
 
.s-btn:hover { transform: translateY(-3px); }
.s-btn:hover::after { opacity: 1; }
.s-btn:active { transform: translateY(0px) scale(0.97); }
 
.s-btn.whatsapp {
  background: var(--wa);
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
}
.s-btn.whatsapp:hover {
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
 
.s-btn.tiktok {
  background: #111;
  border: 1px solid #333;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.s-btn.tiktok:hover {
  box-shadow: 0 8px 32px rgba(105,201,208,0.3), 0 0 0 1px #69c9d0;
  border-color: #69c9d0;
}
 
.tt-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.tt-icon svg { position: absolute; top: 0; left: 0; }
.tt-icon .tt-cyan  { transform: translate(-1.5px, 1.5px); opacity: 0.85; }
.tt-icon .tt-red   { transform: translate(1.5px, -1.5px); opacity: 0.85; }
.tt-icon .tt-white { position: relative; z-index: 2; }
 
.s-btn.instagram {
  background: linear-gradient(135deg, var(--ig-a), var(--ig-b), var(--ig-c), var(--ig-d), var(--ig-e));
  background-size: 200% 200%;
  animation: igShift 4s ease infinite;
  box-shadow: 0 4px 24px rgba(220,39,67,0.4);
}
.s-btn.instagram:hover {
  box-shadow: 0 8px 32px rgba(220,39,67,0.65);
}
@keyframes igShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
 
.icon { width: 18px; height: 18px; flex-shrink: 0; fill: #fff; }