/* ===== VARIABLES ===== */
:root {
    --primary: #D4AF37;
    --primary-dark: #B8960C;
    --primary-light: #F5D76E;
    --dark: #0D0D0D;
    --dark-light: #1a1a1a;
    --gray: #555;
    --gray-light: #888;
    --light: #f8f8f8;
    --white: #fff;
    --red-japan: #BC002D;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 25px 80px rgba(0,0,0,0.2);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* ===== CUSTOM CURSOR ===== */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, opacity 0.15s ease;
    transform: translate(-50%, -50%);
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: rgba(212, 175, 55, 0.1);
}


/* ===== JAPANESE DECORATIVE ELEMENTS ===== */
.jp-pattern {
    position: absolute;
    opacity: 0.03;
    pointer-events: none;
}

.seigaiha {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 40'%3E%3Cpath fill='%23D4AF37' d='M0 40a19.96 19.96 0 0 1 5.9-14.11 20.17 20.17 0 0 1 19.44-5.52A20 20 0 0 1 20.2 40H0zM40 40a20 20 0 0 1-14.11-5.9 20.17 20.17 0 0 1-5.52-19.44A20 20 0 0 1 40 20.2V40zm0 0a20 20 0 0 0 14.11-5.9 20.17 20.17 0 0 0 5.52-19.44A20 20 0 0 0 40 20.2V40zm40 0a19.96 19.96 0 0 0-5.9-14.11 20.17 20.17 0 0 0-19.44-5.52A20 20 0 0 0 59.8 40H80z'/%3E%3C/svg%3E");
    background-size: 80px 40px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn i {
    font-size: 1.1rem;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-phone {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--dark);
}

.btn-phone:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 25px 0 60px 0;
    transition: var(--transition);
    background: linear-gradient(
        to bottom, 
        rgba(0,0,0,0.8) 0%, 
        rgba(0,0,0,0.6) 30%, 
        rgba(0,0,0,0.3) 60%, 
        rgba(0,0,0,0.1) 80%,
        transparent 100%
    );
}

.header.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 40px;
}

.loader-logo-img {
    height: 80px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    letter-spacing: 2px;
}

.logo-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 4px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}


/* ===== HERO WITH SLIDER ===== */
.hero {
    min-height: 100vh;
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slides-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.slide.active .slide-bg {
    transform: scale(1.02);
}

.slide-overlay {
    display: none;
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Slide Indicators */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot:hover {
    border-color: var(--primary);
}

.dot.active {
    background: var(--primary);
    border-color: var(--primary);
    width: 10px;
    height: 10px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Sakura petals decoration */
.sakura-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.sakura {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    opacity: 0.15;
    border-radius: 50% 0 50% 50%;
    animation: sakuraFall linear infinite;
}

@keyframes sakuraFall {
    0% {
        transform: translateY(-10vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.15;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateY(110vh) rotate(720deg);
        opacity: 0;
    }
}

/* Japanese circle (Enso) */
.enso {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    animation: ensoRotate 60s linear infinite;
}

.enso::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    border: 1px solid rgba(212, 175, 55, 0.05);
    border-radius: 50%;
}

@keyframes ensoRotate {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

/* Torii gate silhouette */
.torii {
    position: absolute;
    right: 15%;
    bottom: 15%;
    opacity: 0.03;
    font-size: 15rem;
    color: var(--primary);
}

.hero-content {
    position: relative;
    text-align: left;
    z-index: 2;
    width: 100%;
}

.hero-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.5);
    font-weight: 500;
}

.hero-tag::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.4);
}

.hero-title strong {
    font-weight: 600;
    color: var(--primary);
    display: block;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--white);
    max-width: 550px;
    margin: 0;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.3);
}



.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.hero-scroll span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-light);
    writing-mode: vertical-rl;
}

.hero-scroll .line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}


/* ===== SECTION STYLES ===== */
.section-tag {
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.section-tag::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--primary);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-title strong {
    font-weight: 600;
}

.section-description {
    font-family: 'Montserrat', sans-serif;
    color: var(--gray);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: var(--transition-slow);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: var(--transition-slow);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ===== SOBRE ===== */
.sobre {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.sobre::before {
    content: '建';
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40vw;
    color: var(--light);
    font-family: 'Noto Serif JP', serif;
    pointer-events: none;
    line-height: 1;
}

/* Elemento brasileiro - galhos verdes nas laterais */
.galho {
    position: absolute;
    width: 120px;
    height: 300px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

/* Quadrados da bandeira do Brasil embaixo dos galhos */
.galho::after {
    content: '';
    position: absolute;
    bottom: -50px;
    width: 10px;
    height: 42px;
    background: linear-gradient(
        to bottom,
        #009739 0%, #009739 30%,
        transparent 30%, transparent 36%,
        #002776 36%, #002776 66%,
        transparent 66%, transparent 72%,
        #FFDF00 72%, #FFDF00 100%
    );
    opacity: 0.6;
}

.galho-esquerda {
    left: 0;
    top: 10%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 400'%3E%3Cpath d='M0 200 Q50 160 35 100 Q55 130 45 60 Q70 100 60 30 Q80 70 75 0' stroke='%23228B22' stroke-width='4' fill='none' opacity='0.35'/%3E%3Cpath d='M35 100 Q70 90 100 110' stroke='%23228B22' stroke-width='3' fill='none' opacity='0.3'/%3E%3Cpath d='M45 60 Q80 50 110 75' stroke='%23228B22' stroke-width='3' fill='none' opacity='0.3'/%3E%3Cpath d='M60 30 Q90 25 115 45' stroke='%23228B22' stroke-width='2' fill='none' opacity='0.25'/%3E%3Cpath d='M0 200 Q50 240 35 300 Q55 270 45 340 Q70 300 60 370 Q80 330 75 400' stroke='%23228B22' stroke-width='4' fill='none' opacity='0.35'/%3E%3Cpath d='M35 300 Q70 310 100 290' stroke='%23228B22' stroke-width='3' fill='none' opacity='0.3'/%3E%3Cpath d='M45 340 Q80 350 110 325' stroke='%23228B22' stroke-width='3' fill='none' opacity='0.3'/%3E%3Cellipse cx='25' cy='80' rx='20' ry='12' fill='%23228B22' opacity='0.2' transform='rotate(-35 25 80)'/%3E%3Cellipse cx='40' cy='120' rx='22' ry='14' fill='%23228B22' opacity='0.18' transform='rotate(-25 40 120)'/%3E%3Cellipse cx='30' cy='50' rx='18' ry='10' fill='%23228B22' opacity='0.15' transform='rotate(-40 30 50)'/%3E%3Cellipse cx='25' cy='320' rx='20' ry='12' fill='%23228B22' opacity='0.2' transform='rotate(35 25 320)'/%3E%3Cellipse cx='40' cy='280' rx='22' ry='14' fill='%23228B22' opacity='0.18' transform='rotate(25 40 280)'/%3E%3Cellipse cx='30' cy='350' rx='18' ry='10' fill='%23228B22' opacity='0.15' transform='rotate(40 30 350)'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.galho-esquerda::after {
    left: 25px;
}

.galho-direita {
    right: 0;
    top: 15%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 400'%3E%3Cpath d='M150 200 Q100 160 115 100 Q95 130 105 60 Q80 100 90 30 Q70 70 75 0' stroke='%23228B22' stroke-width='4' fill='none' opacity='0.35'/%3E%3Cpath d='M115 100 Q80 90 50 110' stroke='%23228B22' stroke-width='3' fill='none' opacity='0.3'/%3E%3Cpath d='M105 60 Q70 50 40 75' stroke='%23228B22' stroke-width='3' fill='none' opacity='0.3'/%3E%3Cpath d='M90 30 Q60 25 35 45' stroke='%23228B22' stroke-width='2' fill='none' opacity='0.25'/%3E%3Cpath d='M150 200 Q100 240 115 300 Q95 270 105 340 Q80 300 90 370 Q70 330 75 400' stroke='%23228B22' stroke-width='4' fill='none' opacity='0.35'/%3E%3Cpath d='M115 300 Q80 310 50 290' stroke='%23228B22' stroke-width='3' fill='none' opacity='0.3'/%3E%3Cpath d='M105 340 Q70 350 40 325' stroke='%23228B22' stroke-width='3' fill='none' opacity='0.3'/%3E%3Cellipse cx='125' cy='80' rx='20' ry='12' fill='%23228B22' opacity='0.2' transform='rotate(35 125 80)'/%3E%3Cellipse cx='110' cy='120' rx='22' ry='14' fill='%23228B22' opacity='0.18' transform='rotate(25 110 120)'/%3E%3Cellipse cx='120' cy='50' rx='18' ry='10' fill='%23228B22' opacity='0.15' transform='rotate(40 120 50)'/%3E%3Cellipse cx='125' cy='320' rx='20' ry='12' fill='%23228B22' opacity='0.2' transform='rotate(-35 125 320)'/%3E%3Cellipse cx='110' cy='280' rx='22' ry='14' fill='%23228B22' opacity='0.18' transform='rotate(-25 110 280)'/%3E%3Cellipse cx='120' cy='350' rx='18' ry='10' fill='%23228B22' opacity='0.15' transform='rotate(-40 120 350)'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.galho-direita::after {
    right: 25px;
}



.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sobre-content p {
    font-family: 'Montserrat', sans-serif;
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
}

.sobre-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

.sobre-image {
    position: relative;
}

.sobre-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--primary);
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.sobre-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

/* ===== PRESIDENTE ===== */
.presidente {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.presidente::before {
    content: '社長';
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25vw;
    color: rgba(255, 255, 255, 0.02);
    font-family: 'Noto Serif JP', serif;
    pointer-events: none;
    line-height: 1;
}

.presidente-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
}

.presidente-image {
    position: relative;
}

.presidente-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--primary);
    opacity: 0.4;
    z-index: 1;
}

.presidente-image img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.presidente-content .section-title {
    color: var(--white);
}

.presidente-cargo {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    font-weight: 500;
}

.presidente-content p {
    font-family: 'Montserrat', sans-serif;
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 20px;
    font-weight: 300;
}

.presidente-quote {
    margin-top: 35px;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--primary);
    position: relative;
}

.quote-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.presidente-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--white);
    margin: 0;
    padding-left: 30px;
    line-height: 1.6;
}



/* ===== SERVIÇOS ===== */
.servicos {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.servicos .section-title {
    color: var(--white);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.servico-card {
    background: rgba(255,255,255,0.02);
    padding: 50px 35px;
    text-align: left;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--primary);
    transition: var(--transition);
}

.servico-card:hover::before {
    height: 100%;
}

.servico-card:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-5px);
}

.servico-kanji {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: 'Noto Serif JP', serif;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.35);
    font-weight: 300;
    line-height: 1;
    transition: var(--transition);
}

.servico-card:hover .servico-kanji {
    color: rgba(212, 175, 55, 0.55);
}

.servico-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.servico-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 500;
}

.servico-card p {
    font-family: 'Montserrat', sans-serif;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.8;
}


/* ===== PORTFÓLIO ===== */
.portfolio {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}



.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    padding-top: 20px;
}

.portfolio-item {
    position: relative;
    cursor: pointer;
    aspect-ratio: 1;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--primary);
    z-index: 5;
    transition: var(--transition);
}

.portfolio-item:hover::before {
    width: 8px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.portfolio-item::after {
    content: '築';
    position: absolute;
    top: -25px;
    right: -10px;
    font-family: 'Noto Serif JP', serif;
    font-size: 3rem;
    color: var(--primary);
    opacity: 1;
    z-index: 10;
    transition: var(--transition);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.portfolio-item:nth-child(1)::after { content: '築'; }
.portfolio-item:nth-child(2)::after { content: '工'; }
.portfolio-item:nth-child(3)::after { content: '匠'; }
.portfolio-item:nth-child(4)::after { content: '鋼'; }
.portfolio-item:nth-child(5)::after { content: '技'; }
.portfolio-item:nth-child(6)::after { content: '夢'; }

.portfolio-item:hover::after {
    transform: scale(1.15);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.portfolio-image {
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-slow);
    overflow: hidden;
    position: relative;
}

/* Indicador de clique */
.portfolio-image::after {
    content: '+';
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 26px;
    height: 26px;
    background: rgba(13, 13, 13, 0.8);
    color: var(--primary);
    font-size: 18px;
    font-weight: 300;
    font-family: Arial, sans-serif;
    line-height: 24px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid var(--primary);
    opacity: 1;
    transition: var(--transition);
    z-index: 2;
}

.portfolio-item:hover .portfolio-image::after {
    opacity: 0;
    transform: scale(0);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.portfolio-overlay p {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.portfolio-view {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
}

.portfolio-view:hover {
    background: var(--primary);
    color: var(--dark);
}

/* ===== PORTFOLIO MODAL ===== */
.portfolio-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 40px;
}

.portfolio-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--dark-light);
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: var(--transition);
}

.portfolio-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.modal-image {
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.modal-info {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-tag {
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.modal-tag::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--primary);
}

.modal-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.3;
}

.modal-info p {
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 30px;
}

.modal-details {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
}

.modal-detail i {
    color: var(--primary);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .portfolio-modal {
        padding: 20px;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-image img {
        min-height: 300px;
        max-height: 300px;
    }
    
    .modal-info {
        padding: 40px 30px;
    }
    
    .modal-info h3 {
        font-size: 1.8rem;
    }
    
    .modal-close {
        top: 10px;
        right: 15px;
    }
}

/* ===== DIFERENCIAIS ===== */
.diferenciais {
    padding: 100px 0;
    background-color: var(--dark);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.diferenciais::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.85);
}

/* Símbolos japoneses nas laterais */
.dif-kanji {
    position: absolute;
    font-family: 'Noto Serif JP', serif;
    font-size: 10rem;
    color: var(--primary);
    opacity: 0.4;
    z-index: 1;
    writing-mode: vertical-rl;
    letter-spacing: 20px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.dif-kanji-left {
    left: 20px;
    top: 30px;
}

.dif-kanji-right {
    right: 20px;
    bottom: 30px;
}

.diferenciais .container {
    position: relative;
    z-index: 2;
}

.diferenciais .section-title {
    color: var(--white);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.diferencial {
    text-align: center;
    padding: 40px 25px;
    transition: var(--transition);
}

.diferencial:hover {
    transform: translateY(-10px);
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    border-radius: 50%;
    transition: var(--transition);
}

.diferencial:hover .diferencial-icon {
    background: var(--primary);
}

.diferencial i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.diferencial:hover i {
    color: var(--dark);
}

.diferencial h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.diferencial p {
    font-family: 'Montserrat', sans-serif;
    color: var(--gray-light);
    font-size: 0.85rem;
    font-weight: 300;
}

/* ===== CONTATO ===== */
.contato {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.contato .section-title {
    color: var(--dark);
}

.contato .section-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
}

.contato-text {
    font-family: 'Montserrat', sans-serif;
    color: var(--gray);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.9;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contato-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* ===== CONTATO INFO SECTION (fundo preto) ===== */
.contato-info-section {
    padding: 80px 0;
    background: var(--dark);
    position: relative;
}

.contato-info-section .contato-kanji {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Noto Serif JP', serif;
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.35;
    z-index: 1;
    writing-mode: vertical-rl;
    letter-spacing: 15px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* Grid de contato com mapa */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contato-info-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.contato-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.contato-item strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.contato-item p {
    font-family: 'Montserrat', sans-serif;
    color: var(--gray-light);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Mapa */
.contato-map-col {
    position: relative;
}

.contato-map-link {
    display: block;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
    transition: var(--transition);
}

.contato-map-link:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.contato-map-link iframe {
    display: block;
    filter: grayscale(100%) contrast(1.1);
    transition: var(--transition);
}

.contato-map-link:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.map-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px 20px 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
    background: #080808;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand p {
    font-family: 'Montserrat', sans-serif;
    color: var(--gray-light);
    margin-top: 25px;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.8;
}

.footer h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a,
.footer-services ul li {
    font-family: 'Montserrat', sans-serif;
    color: var(--gray-light);
    font-size: 0.85rem;
    font-weight: 300;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    font-family: 'Montserrat', sans-serif;
    color: var(--gray-light);
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 300;
}

.footer-contact i {
    color: var(--primary);
    width: 16px;
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    color: var(--gray);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.float-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

.float-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
}

.float-phone {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: var(--shadow-gold);
}

.float-btn:hover {
    transform: scale(1.1) translateY(-3px);
}

/* ===== LOADING SCREEN ===== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    margin-bottom: 30px;
    animation: logoFade 1.5s ease-in-out infinite;
}

@keyframes logoFade {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: -50%;
    width: 50%;
    height: 100%;
    background: var(--primary);
    animation: loading 1s ease-in-out infinite;
}

@keyframes loading {
    0% { left: -50%; }
    100% { left: 100%; }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .servicos-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .enso {
        width: 350px;
        height: 350px;
        right: 5%;
    }
    
    .presidente-grid {
        grid-template-columns: 300px 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .header {
        padding: 15px 0 40px 0;
    }
    
    .logo-name {
        font-size: 1.3rem;
    }
    
    .logo-subtitle {
        font-size: 0.55rem;
        letter-spacing: 3px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -280px;
        width: 260px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 0;
        padding: 0 40px;
        transition: var(--transition);
        z-index: 1000;
        border-left: 1px solid rgba(212, 175, 55, 0.15);
    }
    
    .nav-links::before {
        content: '新';
        position: absolute;
        bottom: 40px;
        right: 20px;
        font-family: 'Noto Serif JP', serif;
        font-size: 8rem;
        color: var(--primary);
        opacity: 0.06;
        line-height: 1;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 18px 0;
        font-size: 0.9rem;
        letter-spacing: 3px;
        position: relative;
        transition: var(--transition);
    }
    
    .nav-links a::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 12px;
        width: 0;
        height: 1px;
        background: var(--primary);
        transition: var(--transition);
    }
    
    .nav-links a:hover::before,
    .nav-links a.active::before {
        width: 100%;
    }
    
    .nav-links a:hover {
        color: var(--primary);
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-toggle {
        display: block;
        z-index: 1001;
    }
    
    /* Overlay para fechar menu */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Hero Slider mobile */
    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        top: auto;
        bottom: 35px;
        transform: none;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 40px;
        gap: 8px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .dot.active {
        width: 8px;
        height: 8px;
    }
    
    .hero-tag {
        font-size: 0.7rem;
        letter-spacing: 2px;
        text-shadow: 0 2px 15px rgba(0,0,0,0.9), 0 1px 5px rgba(0,0,0,0.8);
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
        text-shadow: 0 3px 20px rgba(0,0,0,0.9), 0 2px 8px rgba(0,0,0,0.8);
    }
    
    .hero-title strong {
        text-shadow: 0 3px 20px rgba(0,0,0,0.9), 0 2px 8px rgba(0,0,0,0.8);
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.7;
        text-shadow: 0 2px 15px rgba(0,0,0,0.9), 0 1px 5px rgba(0,0,0,0.8);
    }
    
    /* Overlay mais escuro no slide para mobile */
    .slide-bg::after {
        background: rgba(0, 0, 0, 0.4);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 25px;
        gap: 12px;
    }
    
    .hero-scroll {
        display: none;
    }
    
    /* Sections */
    .sobre,
    .servicos,
    .portfolio,
    .diferenciais,
    .contato,
    .presidente {
        padding: 70px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-tag {
        font-size: 0.6rem;
        letter-spacing: 3px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Sobre */
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sobre-content {
        text-align: center;
    }
    
    .sobre-content .section-tag {
        justify-content: center;
    }
    
    .sobre-content .section-tag::before {
        display: none;
    }
    
    .sobre-image {
        order: -1;
    }
    
    .sobre-image img {
        height: 300px;
    }
    
    .sobre-stats {
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        flex-direction: row;
    }
    
    .stat {
        text-align: center;
        width: 100%;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    /* Presidente */
    .presidente-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .presidente-image {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .presidente-cargo {
        font-size: 0.75rem;
        margin-bottom: 20px;
    }
    
    .presidente-content p {
        font-size: 0.9rem;
    }
    
    .presidente-quote {
        padding: 20px;
        margin-top: 25px;
    }
    
    .presidente-quote p {
        font-size: 1.1rem;
        padding-left: 20px;
    }
    
    .quote-icon {
        font-size: 3rem;
        left: 15px;
    }
    
    /* Serviços */
    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .servico-card {
        padding: 35px 25px;
    }
    
    .servico-kanji {
        font-size: 3rem;
    }
    
    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .portfolio-item::after {
        font-size: 2rem;
        top: -15px;
        right: -5px;
    }
    
    /* Diferenciais */
    .diferenciais-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .diferencial {
        padding: 25px 15px;
    }
    
    .diferencial-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .diferencial i {
        font-size: 1.4rem;
    }
    
    .diferencial h4 {
        font-size: 1.1rem;
    }
    
    .diferencial p {
        font-size: 0.75rem;
    }
    
    .dif-kanji {
        font-size: 6rem;
        opacity: 0.2;
    }
    
    /* Contato */
    .contato-text {
        font-size: 0.9rem;
        margin-bottom: 35px;
    }
    
    .contato-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contato-item {
        gap: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contato-info-col {
        align-items: center;
    }
    
    .contato-info-section .contato-kanji {
        font-size: 5rem;
        opacity: 0.2;
        right: 10px;
    }
    
    /* Buttons */
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 15px 25px;
        font-size: 0.8rem;
    }
    
    /* Footer */
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .footer-contact {
        grid-column: 1 / -1;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        padding: 25px 0;
        text-align: center;
    }
    
    .footer-bottom p {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Floating buttons */
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Galhos */
    .galho {
        width: 80px;
        height: 200px;
        opacity: 0.5;
    }
    
    .galho::after {
        display: none;
    }
    
    /* Decorative elements */
    .enso,
    .torii {
        display: none;
    }
    
    .sobre::before {
        font-size: 50vw;
    }
    
    .presidente::before {
        font-size: 35vw;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .sobre-stats {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .diferencial {
        padding: 30px 20px;
    }
    
    .presidente-image {
        max-width: 220px;
    }
    
    .presidente-quote p {
        font-size: 1rem;
    }
    
    .btn {
        max-width: 100%;
        padding: 14px 20px;
    }
    
    .galho {
        display: none;
    }
    
    .contato-info-section .contato-kanji {
        display: none;
    }
    
    .dif-kanji {
        display: none;
    }
}

/* ===== SMOOTH SCROLL OFFSET ===== */
section[id] {
    scroll-margin-top: 80px;
}
