/* www.templatemo.com

TABLE OF CONTENT
    1. Universal Styles
    2. Header
    3. Home
    4. About & Footer
    5. Men
    6. Blog
    7. Contact - CORRIGIDO (cores mais claras)
    8. Media Queries
    9. Animações e Efeitos Modernos
----------------------------------------------*/

/* 1. Universal Styles - MODERNIZADO */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: 'Open Sans', sans-serif;
}

ul { 
    list-style: none; 
}

body { 
    font-size: 15px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    animation: fadeInBody 0.5s ease-out;
}

@keyframes fadeInBody {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.templatemo-container {
    margin: 0 auto;
    max-width: 1600px;
    overflow: hidden;
}

.templatemo-container::after {
    content: "";
    display: table;
    clear: both;
}

.gold-text { 
    color: #D0AF51; 
    position: relative;
}

.gold-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #D0AF51, transparent);
    opacity: 0.5;
}

.white-text { 
    color: white; 
}

.gray-text { 
    color: #838383; 
}

.mobile-menu-icon {
    cursor: pointer;
    display: none; 
    transition: transform 0.3s ease;
}

.mobile-menu-icon:hover {
    transform: scale(1.1);
}

a:hover { 
    color: #D0AF51;
    text-decoration: none;
}

h2 {
    font-size: 3.4em;
    font-weight: 350;
    letter-spacing: 4px;
    position: relative;
    margin-bottom: 40px;
}

section { 
    padding: 60px 0; 
    position: relative;
}

.templatemo-section-header-hr {
    border-top: 2px solid #D0AF51;
    width: 185px;
    display: inline-block;
    margin: 0 10px 0 0;
    vertical-align: middle;
    opacity: 0.8;
}

.templatemo-section-subheader {
    color: #D0AF51;
    display: inline-block;
    margin-bottom: 70px;
    font-size: 1.1em;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}

.templatemo-section-subheader::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: #D0AF51;
    margin: 8px auto 0;
    opacity: 0.7;
    transition: width 0.4s ease;
}

.templatemo-section-subheader:hover::after {
    width: 80px;
}

.templatemo-gray-bg { 
    background: #F8F8F8; 
    position: relative;
}

.templatemo-gray-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D0AF51, transparent);
    opacity: 0.3;
}

.templatemo-dark-bg {
    background: #181818;
    color: #DDD;
    position: relative;
}

.templatemo-dark-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D0AF51, transparent);
}

.margin-bottom-10 { 
    margin-bottom: 10px; 
}

/* 2. Header - CORRIGIDO (sem estilos inline problemáticos) */

/* Container principal do header */
.templatemo-container {
    margin: 0 auto;
    max-width: 1600px;
    overflow: hidden;
}

.templatemo-block-left { 
    width: 40%; 
}

.templatemo-block-right { 
    width: 60%; 
}

.templatemo-block-left,
.templatemo-block-right {
    float: left;
    position: relative;
}

.templatemo-header-left,
.templatemo-header-right { 
    height: 500px;
    position: relative;
    overflow: hidden;
}

.templatemo-header-left {
    background: url(../img/banner.jpg) no-repeat center center;
    background-size: cover; 
    color: #fff;
    position: relative; 
}

.templatemo-header-left-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 100%);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.templatemo-header-right {
    background: url(../img/header-img.jpg) no-repeat center center;
    background-size: cover; 
}

.templatemo-header-right-overlay {
    background: linear-gradient(135deg, rgba(208, 175, 81, 0.4) 0%, rgba(208, 175, 81, 0.2) 100%);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Container do texto - SEM estilos inline */
.templatemo-header-text-wrap {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
    padding: 0 60px; /* Padding lateral adequado */
}

.templatemo-header-text {
    text-align: right;
    width: 100%;
    animation: slideInRight 1s ease-out 0.3s both;
    padding: 40px 0; /* Espaço vertical */
}

/* NOVAS CLASSES para substituir os estilos inline */
.header-branding-wrapper {
    text-align: right;
    margin-bottom: 30px;
}

.header-collections {
    color: #D0AF51;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 8px;
    text-transform: uppercase;
    display: block;
}

.header-studio {
    color: white;
    font-size: 38px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 5px;
    display: block;
}

.header-tagline {
    color: #c9c9c9;
    font-size: 12px; /* Aumentado de 10px para 12px */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 10px;
    line-height: 1.4;
    display: block;
}

.templatemo-site-name {
    letter-spacing: 4px;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.templatemo-site-name::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 100px;
    height: 3px;
    background: #D0AF51;
    opacity: 0.8;
}

.templatemo-header-hr {
    border-top: 1px solid #A4A2A2;
    width: 80px;
    display: inline-block;
    margin: 20px 10px 20px 0;
    vertical-align: middle;
    opacity: 0.6;
}

.templatemo-slogan {
    color: #D0AF51;
    display: inline-block;
    font-size: 12px;
    letter-spacing: 5px;
    font-weight: 300;
    text-transform: uppercase;
    opacity: 0.9;
    margin: 15px 0;
}

.header-access-note {
    color: #bdbdbd;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 20px;
    max-width: 500px;
    text-align: right;
    float: right;
    clear: both;
}

/* Para as outras páginas (não index) */
.templatemo-header-text .templatemo-site-name {
    font-size: 48px;
    margin-bottom: 15px;
}

.templatemo-header-text .templatemo-slogan {
    font-size: 12px;
    margin-top: 10px;
}

/* Navigation - mantido igual */
.templatemo-social,
.templatemo-nav {
    height: 70px;
    width: 100%;
    position: relative;
    z-index: 1000;
}

.templatemo-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 60px;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
}

.templatemo-social li { 
    margin-right: 25px; 
    position: relative;
}

.templatemo-social a {
    color: white;
    font-size: 1.4em; 
    display: block;
    transition: all 0.3s ease;
}

.templatemo-social i {
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    line-height: 36px;
    width: 36px;
    height: 36px;
    vertical-align: middle;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.1);
}

.templatemo-social a:hover i { 
    background: #D0AF51;
    color: black;
    transform: translateY(-3px) rotate(10deg);
    box-shadow: 0 5px 15px rgba(208, 175, 81, 0.4);
    border-color: #D0AF51;
}

.templatemo-nav { 
    background: rgba(0,0,0,0.98); 
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(208, 175, 81, 0.1);
}

.templatemo-nav ul {
    display: flex;
    justify-content: flex-start;
    padding-left: 60px;
}

.templatemo-nav li { 
    line-height: 70px; 
    position: relative;
}

.templatemo-nav a {
    color: #D0AF51;
    display: inline-block;
    width: 100px;
    height: 70px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
}

.templatemo-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #D0AF51;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 3px 3px 0 0;
}

.templatemo-nav a:hover::before,
.templatemo-nav li.active a::before {
    width: 40px;
}

.templatemo-nav a:hover { 
    text-decoration: none;
    color: #FFD700;
    transform: translateY(-2px);
}

.templatemo-nav li.active a,
.templatemo-nav a:hover {
    background: rgba(60, 60, 61, 0.4); 
}

.templatemo-nav li.active a {
    color: #FFD700;
}

.templatemo-social li,
.templatemo-nav li {
    display: inline-block;
    float: left; 
}

/* Responsividade */
@media screen and (max-width: 1200px) {
    .templatemo-header-text-wrap {
        padding: 0 40px;
    }
    
    .templatemo-social {
        padding-right: 40px;
    }
    
    .templatemo-nav ul {
        padding-left: 40px;
    }
}

@media screen and (max-width: 991px) {
    .templatemo-block-left, 
    .templatemo-block-right {
        width: 100%;
        float: none;
    }
    
    .templatemo-header-left,
    .templatemo-header-right {
        height: 350px;
    }
    
    .templatemo-header-text-wrap {
        padding: 0 30px;
    }
    
    .templatemo-header-text {
        text-align: center;
        padding: 30px 0;
    }
    
    .header-branding-wrapper {
        text-align: center;
    }
    
    .header-access-note {
        text-align: center;
        float: none;
        margin-left: auto;
        margin-right: auto;
    }
    
    .templatemo-site-name::after {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    
    .templatemo-social {
        justify-content: center;
        padding-right: 0;
    }
    
    .templatemo-nav ul {
        padding-left: 0;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .templatemo-header-left,
    .templatemo-header-right {
        height: 300px;
    }
    
    .templatemo-header-text-wrap {
        padding: 0 20px;
    }
    
    .header-collections {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .header-studio {
        font-size: 30px;
        letter-spacing: 3px;
    }
    
    .header-tagline {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    
    .templatemo-site-name {
        font-size: 36px;
    }
    
    .header-access-note {
        font-size: 13px;
        max-width: 400px;
    }
}

@media screen and (max-width: 576px) {
    .templatemo-header-left,
    .templatemo-header-right {
        height: 250px;
    }
    
    .templatemo-header-text-wrap {
        padding: 0 15px;
    }
    
    .header-collections {
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    
    .header-studio {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .header-tagline {
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .templatemo-site-name {
        font-size: 28px;
    }
    
    .templatemo-slogan {
        font-size: 11px;
        letter-spacing: 3px;
    }
    
    .header-access-note {
        font-size: 12px;
        max-width: 300px;
    }
}

/* 3. Home - MODERNIZADO */
/* New Arrivals */
.new-arrival-container {
    cursor: pointer;
    display: inline-block;
    position: relative;
    max-width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.08),
        0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.6s ease-out;
    background: white;
}

.new-arrival-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: inherit;
}

.new-arrival-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.12),
        0 5px 15px rgba(0,0,0,0.07);
}

.new-arrival-container:hover::after {
    opacity: 1;
}

.new-arrival-overlay {
    background: linear-gradient(135deg, rgba(208, 175, 81, 0.5) 0%, rgba(208, 175, 81, 0.3) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.new-arrival-container:hover .new-arrival-overlay {
    opacity: 1;
}

.new-arrival-title {
    color: rgb(237,237,237);
    font-size: 2.8em;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 3;
}

.new-arrival-container:hover .new-arrival-title {
    transform: translateY(0);
}

.new-arrival-title span {
    display: block;
    text-align: center;
}

.new-arrival-title .smaller-text {
    font-size: 0.5em;
    font-weight: 300;
    letter-spacing: 3px;
    margin-top: 10px;
    opacity: 0.9;
}

.font-script { 
    font-family: 'Dancing Script', cursive; 
    font-size: 1.2em;
}

.bordered-text {
    border: 2px solid rgba(255,255,255,0.8);
    padding: 8px 15px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    background: rgba(255,255,255,0.1);
}

/* Product Type */
.product-type-container {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
    max-width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.08),
        0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    background: white;
}

.product-type-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: inherit;
}

.product-type-container:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.12),
        0 3px 10px rgba(0,0,0,0.06);
}

.product-type-container:hover::after {
    opacity: 1;
}

.product-type-overlay {
    cursor: pointer;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(208, 131, 81, 0.15);
    z-index: 1000;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

.product-type-container:hover .product-type-img {
    filter: blur(3px) brightness(0.9);
    transform: scale(1.08);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.product-type-container:hover .product-type-overlay {
    opacity: 1;
}

.product-type-info {
    border: 2px solid #D0AF51;
    text-align: center;
    width: 85%;
    height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    transform: scale(0.95) rotate(-2deg);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-type-container:hover .product-type-info {
    transform: scale(1) rotate(0deg);
}

.product-type-info h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.product-type-info .fa {
    border: 2px solid #D0AF51;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    padding-top: 11px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.2em;
    margin-bottom: 15px;
    background: white;
}

.product-type-container:hover .product-type-info .fa {
    transform: rotate(15deg) scale(1.1);
    background: #D0AF51;
    color: white;
    box-shadow: 0 5px 15px rgba(208, 175, 81, 0.4);
}

.product-type-info .fa.white-border {
    border-color: #fff;
}

.product-type-message {
    background: #fff;
    border: 2px solid #D0AF51;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.08),
        0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.product-type-message:hover {
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.12),
        0 3px 10px rgba(0,0,0,0.06);
    transform: translateY(-5px);
    border-color: #C19B3C;
}

.gold-border {
    border: 2px solid #D0AF51;
    padding: 12px;
    border-radius: 10px;
    background: rgba(208, 175, 81, 0.05);
}

.product-type-message p {
    line-height: 1.8;
    margin-top: 25px;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.product-type-message-title {
    margin-top: 0;
    position: relative;
    padding-bottom: 15px;
}

.product-type-message-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #D0AF51;
    border-radius: 2px;
}

/* Our Products - CORRIGIDO */
.img-fashion {
    max-width: 230px;
    max-height: 230px;
    border-radius: 12px;
    transition: all 0.4s ease;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.img-fashion:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-menu {
    margin-bottom: 80px;
    overflow: visible;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.product-menu li {
    background: #000;
    display: inline-block;
    line-height: 60px;
    list-style: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.product-menu li::before {
    display: none;
}

.product-menu a {
    color: #D0AF51;
    min-width: 110px;
    height: 60px;
    padding: 0 25px !important;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.product-menu li.active a,
.product-menu a:hover {
    background: rgba(208, 175, 81, 0.9) !important;
    color: #000 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(208, 175, 81, 0.3);
}

.product-menu li.active {
    box-shadow: 0 5px 20px rgba(208, 175, 81, 0.4);
    background: #D0AF51;
}

.product-menu li.active a {
    color: #000 !important;
    font-weight: 600;
}

/* Botões */
.btn-gray-bordered {
    border: 2px solid #D1D1D1;
    color: #8F8E8E;
    display: inline-block;
    padding: 14px 40px;
    margin-top: 20px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    text-align: center;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.btn-gray-bordered::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(208, 175, 81, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-gray-bordered:hover {
    border-color: #D0AF51;
    color: #D0AF51;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(208, 175, 81, 0.2);
    background: rgba(208, 175, 81, 0.05);
    padding: 14px 45px;
}

.btn-gray-bordered:hover::before {
    width: 300px;
    height: 300px;
}

/* 4. About & Footer - MODERNIZADO */
.templatemo-about-hr {
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    border-top: 2px solid #D0AF51;
    opacity: 0.7;
}

.templatemo-about-subtitle {
    display: inline-block;
    margin: 0;
    vertical-align: middle;
    color: #D0AF51;
    font-size: 1.1em;
    letter-spacing: 2px;
}

.about-us-text {
    line-height: 1.9;
    margin: 80px auto 50px auto;
    max-width: 850px;
    font-size: 1.1em;
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border-left: 4px solid #D0AF51;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.about-us-text::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: #D0AF51;
    opacity: 0.2;
    font-family: 'Dancing Script', cursive;
}

footer {
    background: #000;
    color: #fff;
    font-size: 0.9em;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #D0AF51, transparent);
}

footer p {
    margin: 0;
    padding: 10px 0;
    font-size: 14px;
    color: #aaa;
}

footer a {
    color: #D0AF51;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* 5. Men - CORRIGIDO (módulos quadrados, zoom na foto) */

/* Container do produto - QUADRADO */
.product-type-container {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
    width: 100%; /* Ocupa toda a largura da coluna */
    height: 0; /* Para criar aspect ratio */
    padding-bottom: 100%; /* Isso cria um quadrado perfeito (1:1) */
    border-radius: 14px;
    overflow: hidden; /* IMPORTANTE: mantém o zoom dentro do container */
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.08),
        0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    background: white;
}

/* Container interno para posicionamento absoluto */
.product-type-container > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* IMAGEM - ocupa TODO o container quadrado */
.img-collection,
.product-type-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover; /* Cobre todo o espaço, mantendo proporção */
    border-radius: 14px;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    image-rendering: -webkit-optimize-contrast;
    will-change: transform; /* Otimização para performance do zoom */
}

/* ZOOM no hover - A imagem cresce dentro do container */
.product-type-container:hover .img-collection,
.product-type-container:hover .product-type-img {
    transform: scale(1.15); /* Zoom mais pronunciado */
    filter: brightness(1.05); /* Leve aumento de brilho */
}

/* REMOVER completamente o overlay */
.product-type-overlay {
    display: none !important;
}

.product-type-info {
    display: none !important;
}

/* PRICE TAG - posicionamento corrigido para o novo layout */
.price-tag {
    background: linear-gradient(135deg, #AB0008 0%, #8A0006 100%);
    color: white;
    font-weight: 700;
    width: 110px;
    height: 45px;
    line-height: 45px;
    opacity: 0;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(171, 0, 8, 0.3);
    font-size: 16px;
}

.price-tag::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 8px solid #8A0006;
}

.product-type-container:hover .price-tag { 
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Borda sutil no hover (opcional) */
.product-type-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 14px;
    transition: border-color 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.product-type-container:hover::after {
    border-color: rgba(208, 175, 81, 0.6);
}

/* Ajustar margens entre os itens */
.col-lg-3.col-md-3.col-sm-6.col-xs-12.margin-bottom-10 {
    padding: 0 10px; /* Espaçamento lateral entre itens */
    margin-bottom: 20px;
}

/* Garantir que o row tenha espaçamento negativo para compensar o padding */
.row {
    margin: 0 -10px;
}

/* Para as páginas específicas Men e Women */
section.container .row {
    display: flex;
    flex-wrap: wrap;
}

/* Responsividade - manter quadrados em todos os tamanhos */
@media (max-width: 991px) {
    .product-type-container {
        padding-bottom: 100%; /* Mantém quadrado em tablets */
    }
}

@media (max-width: 767px) {
    .product-type-container {
        padding-bottom: 100%; /* Mantém quadrado em mobile */
    }
    
    .col-lg-3.col-md-3.col-sm-6.col-xs-12.margin-bottom-10 {
        padding: 0 8px;
        margin-bottom: 16px;
    }
    
    .row {
        margin: 0 -8px;
    }
}

@media (max-width: 480px) {
    .product-type-container {
        padding-bottom: 100%; /* Mantém quadrado em mobile pequeno */
    }
    
    .price-tag {
        width: 90px;
        height: 38px;
        line-height: 38px;
        font-size: 14px;
        bottom: 15px;
    }
}

/* Efeito de profundidade no hover */
.product-type-container {
    perspective: 1000px; /* Para efeito 3D suave */
}

.product-type-container:hover {
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.12),
        0 5px 15px rgba(0,0,0,0.07);
}

/* 6. Blog - MODERNIZADO */
.templatemo-blog-post { 
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.08),
        0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    background: white;
    animation: fadeInUp 0.6s ease-out;
}

.templatemo-blog-post:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.12),
        0 5px 15px rgba(0,0,0,0.07);
}

.margin-bottom-0 { margin-bottom: 0; }

.post-img-container { 
    position: relative; 
    overflow: hidden;
    min-height: 250px;
    height: auto;
}

.post-img-container img {
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
}

.templatemo-blog-post:hover .post-img-container img {
    transform: scale(1.08);
}

.templatemo-post-date {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #000 0%, #222 100%);
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center; 
    border-radius: 0 0 16px 0;
    z-index: 2;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
}

.date { 
    font-size: 3em; 
    font-weight: 300;
    color: #D0AF51;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.templatemo-post-social {
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
    padding-top: 110px;
    z-index: 1;
}

.templatemo-post-social .fa {
    color: white;
    width: 40px;
    height: 40px;
    padding: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    margin: 10px auto;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
}

.templatemo-post-social .fa:hover {
    transform: translateY(-3px) scale(1.1);
    color: #D0AF51;
    background: rgba(255,255,255,0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.red-bg { 
    background: linear-gradient(135deg, #AB0008 0%, #8A0006 100%); 
}

.gold-bg { 
    background: linear-gradient(135deg, #D0AF51 0%, #C19B3C 100%); 
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.margin-top-10 { margin-top: 10px; }

.v-align-middle { vertical-align: middle; }

.post-excerpt {
    margin-top: 25px;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #555;
    padding: 0 20px;
}

.post-read-more {
    display: inline-flex;
    align-items: center;
    margin-bottom: 55px;
    margin-top: 30px;
    color: #D0AF51;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(208, 175, 81, 0.05);
}

.post-read-more:hover {
    color: #C19B3C;
    transform: translateX(10px);
    background: rgba(208, 175, 81, 0.1);
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(208, 175, 81, 0.15);
}

.post-read-more::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.post-read-more:hover::after {
    transform: translateX(5px);
}

.blog-post-pagination { 
    margin-top: 60px; 
}

.templatemo-blog-post-aside { 
    padding-top: 80px; 
}

/* aside - MODERNIZADO */
.aside-block {
    margin-bottom: 60px;
    overflow: hidden;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.06),
        0 1px 3px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.aside-block:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.1),
        0 3px 10px rgba(0,0,0,0.05);
}

.aside-block h4 { 
    font-weight: 700; 
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: #333;
}

.aside-block h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #D0AF51;
    border-radius: 2px;
}

hr.gold-hr { 
    border-color: #D0AF51; 
    opacity: 0.5;
    margin: 25px 0;
}

.category-list { 
    list-style: none; 
}

.category-list li {
    line-height: 3.2em;
    border-bottom: 1px dotted #DDD;
    padding: 5px 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.category-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #D0AF51;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.category-list li:hover {
    background: rgba(208, 175, 81, 0.05);
    padding-left: 25px;
    border-bottom-color: #D0AF51;
}

.category-list li:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.category-list li:last-child { 
    border-bottom: none; 
}

.category-list a { 
    color: #666; 
    display: block;
    transition: color 0.3s ease;
}

.category-list a:hover { 
    color: #D0AF51; 
    text-decoration: none;
}

.aside-post-excerpt h5 { 
    font-weight: 700; 
    margin-bottom: 10px;
    color: #333;
}

.tag-list { 
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-list li {
    display: inline-block;
    list-style: none;
}

.tag-list a {
    color: #666;
    display: block;
    background: #F5F5F5;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #EEE;
    font-size: 0.9em;
}

.tag-list a:hover { 
    color: #D0AF51;
    background: white;
    transform: translateY(-3px);
    box-shadow: 
        0 5px 15px rgba(0,0,0,0.08),
        0 2px 5px rgba(0,0,0,0.05);
    border-color: #D0AF51;
    text-decoration: none;
}

/* 7. Contact - CORRIGIDO E MELHORADO */
.w-120 { width: 120px; }

/* Seção Contact - espaçamento melhorado */
.contact-section {
    padding: 80px 0 !important;
}

.templatemo-dark-bg {
    padding: 80px 0 !important;
}

/* Container principal do contact */
.contact-layout-wrapper {
    display: flex;
    align-items: stretch;
    min-height: 700px;
    gap: 40px;
    padding: 40px 0;
}

/* Container do formulário - CORRIGIDO */
.templatemo-contact-info {
    max-width: 450px;
    width: 100%;
    padding: 50px 45px;
    background: rgba(25, 25, 25, 0.98); /* Fundo um pouco mais claro */
    border-radius: 20px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(208, 175, 81, 0.3);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    animation: slideInLeft 0.8s ease-out;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Títulos do formulário - MAIS CLAROS */
.templatemo-contact-info h2 {
    color: #F0F0F0 !important; /* Cinza muito claro */
    margin-bottom: 20px;
    font-size: 2.5em;
}

.templatemo-contact-info p {
    color: #CCCCCC !important; /* Cinza claro */
    line-height: 1.8;
    margin-bottom: 25px;
}

.templatemo-contact-info strong {
    color: #E0E0E0 !important; /* Cinza claro para labels */
}

/* Campos de INPUT - TEXTO MAIS CLARO */
.form-control {
    background: rgba(35, 35, 35, 0.95);
    color: #F0F0F0 !important; /* Cinza muito claro */
    border-radius: 12px;
    padding: 14px 18px !important;
    height: 52px !important;
    font-size: 16px !important;
    border: 2px solid rgba(70, 70, 70, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: #D0AF51;
    box-shadow: 
        0 0 0 3px rgba(208, 175, 81, 0.2),
        inset 0 0 20px rgba(208, 175, 81, 0.05);
    background: rgba(40, 40, 40, 0.95);
    transform: translateY(-2px);
    color: #FFFFFF !important;
}

.form-control::placeholder {
    color: #AAAAAA !important; /* Placeholder mais claro */
    opacity: 0.8;
}

textarea.form-control {
    min-height: 160px !important;
    padding: 16px 18px !important;
    resize: vertical;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #F0F0F0 !important;
}

/* Labels do formulário */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    color: #E0E0E0 !important; /* Cinza claro */
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
    font-size: 15px;
    letter-spacing: 0.8px;
    position: relative;
    padding-left: 5px;
}

.form-group label::before {
    content: '•';
    position: absolute;
    left: -10px;
    color: #D0AF51;
    font-size: 1.2em;
}

/* Botão MODERNO */
.templatemo-btn-gold {
    background: linear-gradient(135deg, #D0AF51 0%, #C19B3C 100%);
    border: none;
    width: 100%;
    color: #FFFFFF !important;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 16px !important;
    height: 54px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.25),
        0 2px 5px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 25px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.templatemo-btn-gold::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: left 0.7s ease;
    z-index: -1;
}

.templatemo-btn-gold:hover {
    background: linear-gradient(135deg, #C19B3C 0%, #A8862A 100%);
    transform: translateY(-4px);
    box-shadow: 
        0 12px 25px rgba(0, 0, 0, 0.35),
        0 4px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
}

.templatemo-btn-gold:hover::before {
    left: 100%;
}

.templatemo-btn-gold:active {
    transform: translateY(-1px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.25),
        0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Google Maps - CORRIGIDO */
.map-container {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 3px 10px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.8s ease-out 0.2s both;
}

#google-map {
    width: 100%;
    height: 100%;
    min-height: 650px;
    display: block;
    border: none;
}

#google-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Animações para contato */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 8. Media Queries */
@media screen and (max-width: 1200px) {
    .templatemo-container {
        padding: 0 20px;
    }
    
    .templatemo-header-text {
        margin-right: 30px;
    }
    
    .contact-layout-wrapper {
        gap: 30px;
    }
}

@media screen and (max-width: 991px) {
    /* Menu Mobile */
    .mobile-menu-icon {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1001;
        color: #D0AF51;
        font-size: 24px;
    }
    
    .templatemo-nav {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: rgba(0,0,0,0.98);
        z-index: 1000;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    .templatemo-nav.active {
        display: block;
    }
    
    .templatemo-nav ul {
        flex-direction: column;
        padding-left: 0;
    }
    
    .templatemo-nav li {
        float: none;
        display: block;
        line-height: 60px;
        border-bottom: 1px solid rgba(208, 175, 81, 0.1);
    }
    
    .templatemo-nav a {
        width: 100%;
        height: 60px;
        padding: 0 30px;
        text-align: left;
    }
    
    /* Header responsivo */
    .templatemo-block-left, 
    .templatemo-block-right {
        width: 100%;
        float: none;
    }
    
    .templatemo-header-left,
    .templatemo-header-right {
        height: 300px;
    }
    
    .templatemo-header-text {
        margin-right: 0;
        text-align: center;
        padding: 20px;
    }
    
    .templatemo-social {
        justify-content: center;
        padding-right: 0;
    }
    
    /* Contact responsivo */
    .contact-layout-wrapper {
        flex-direction: column;
        min-height: auto;
        gap: 40px;
    }
    
    .templatemo-contact-info {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 0;
    }
    
    .map-container {
        min-height: 500px;
    }
    
    #google-map {
        min-height: 500px;
    }
    
    section.templatemo-dark-bg {
        padding: 60px 0 !important;
    }
    
    /* Blog sidebar */
    .templatemo-blog-post-aside {
        padding-top: 40px;
    }
}

@media screen and (max-width: 768px) {
    /* Product menu scroll */
    .product-menu {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .product-menu::-webkit-scrollbar {
        height: 4px;
    }
    
    .product-menu::-webkit-scrollbar-thumb {
        background: rgba(208, 175, 81, 0.3);
        border-radius: 2px;
    }
    
    .product-menu li {
        flex-shrink: 0;
    }
    
    /* Contact mobile */
    .contact-layout-wrapper {
        gap: 30px;
        padding: 20px 0;
    }
    
    .templatemo-contact-info {
        padding: 35px 30px;
    }
    
    .map-container {
        min-height: 400px;
    }
    
    #google-map {
        min-height: 400px;
    }
    
    section.templatemo-dark-bg {
        padding: 50px 0 !important;
    }
    
    .templatemo-btn-gold {
        margin-top: 20px;
        padding: 14px !important;
        height: 50px !important;
    }
}

@media screen and (max-width: 576px) {
    /* Ajustes gerais */
    h2 {
        font-size: 2.5em;
    }
    
    .templatemo-section-subheader {
        font-size: 1em;
    }
    
    /* Product menu mobile */
    .product-menu {
        gap: 6px;
    }
    
    .product-menu a {
        min-width: 95px;
        padding: 0 18px !important;
        font-size: 13px;
        height: 55px;
        line-height: 55px;
    }
    
    .btn-gray-bordered {
        padding: 12px 30px;
        min-width: 160px;
        font-size: 14px;
    }
    
    /* Contact mobile pequeno */
    .templatemo-contact-info {
        padding: 30px 25px;
    }
    
    .map-container {
        min-height: 350px;
    }
    
    #google-map {
        min-height: 350px;
    }
    
    section.templatemo-dark-bg {
        padding: 40px 0 !important;
    }
    
    .form-control {
        padding: 12px 15px !important;
        height: 48px !important;
        font-size: 15px !important;
    }
    
    textarea.form-control {
        min-height: 140px !important;
    }
}

@media screen and (max-width: 480px) {
    .templatemo-header-left,
    .templatemo-header-right {
        height: 250px;
    }
    
    .templatemo-site-name {
        font-size: 32px;
    }
    
    .templatemo-slogan {
        font-size: 10px;
        letter-spacing: 3px;
    }
    
    .collections-title {
        font-size: 20px;
    }
    
    .studio-title {
        font-size: 28px;
    }
    
    /* Contact muito pequeno */
    .templatemo-contact-info {
        padding: 25px 20px;
    }
    
    .map-container {
        min-height: 300px;
    }
    
    #google-map {
        min-height: 300px;
    }
    
    .templatemo-btn-gold {
        padding: 12px !important;
        height: 48px !important;
        font-size: 15px !important;
    }
}

/* 9. Animações e Efeitos Modernos */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Scroll reveal classes */
@media (prefers-reduced-motion: no-preference) {
    .fade-in-scroll {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(0.215, 0.610, 0.355, 1), 
                    transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
    }
    
    .fade-in-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Imagens responsivas */
.img-responsive {
    max-width: 100%;
    height: auto;
}

/* Acessibilidade - focus states */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #D0AF51;
    outline-offset: 2px;
}

/* Performance optimization */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #D0AF51 0%, #C19B3C 100%);
    border-radius: 5px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #C19B3C 0%, #A8862A 100%);
    box-shadow: 0 0 10px rgba(208, 175, 81, 0.3);
}

/* Selection color */
::selection {
    background: rgba(208, 175, 81, 0.3);
    color: #000;
}

::-moz-selection {
    background: rgba(208, 175, 81, 0.3);
    color: #000;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Print styles */
@media print {
    .templatemo-nav,
    .templatemo-social,
    .mobile-menu-icon,
    .btn-gray-bordered,
    .post-read-more,
    .templatemo-btn-gold,
    .map-container {
        display: none !important;
    }
    
    .templatemo-container {
        max-width: 100%;
        box-shadow: none;
    }
    
    a {
        color: #000 !important;
        text-decoration: underline !important;
    }
}

/* ==============================
   VIDEO CONTAINER - CORRIGIDO PARA MOBILE
   ============================== */

.video-container {
    width: 100%;
    height: 70vh; /* Altura em viewport */
    min-height: 500px;
    max-height: 800px;
    position: relative;
    overflow: hidden; /* ESSENCIAL: esconde qualquer overflow */
    background: #000;
    z-index: 1; /* Garante que fique atrás do header */
}

/* Vídeo DENTRO do container */
.fullscreen-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    
    /* Garante que não saia do container */
    max-width: 100%;
    max-height: 100%;
    display: block;
}

/* Container especial para mobile */
@media screen and (max-width: 992px) {
    .video-container {
        height: 60vh;
        min-height: 400px;
        max-height: 600px;
        position: relative;
        overflow: hidden !important; /* Força o hidden */
    }
    
    .fullscreen-video {
        /* Força o vídeo a ficar DENTRO dos limites */
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
    }
}

@media screen and (max-width: 768px) {
    .video-container {
        height: 50vh;
        min-height: 350px;
        max-height: 500px;
        /* Adiciona margem se estiver colado no header */
        margin-bottom: 0;
    }
}

@media screen and (max-width: 576px) {
    .video-container {
        height: 40vh;
        min-height: 300px;
        max-height: 450px;
    }
    
    /* Garante que o header comece DEPOIS do vídeo */
    .templatemo-container {
        position: relative;
        z-index: 2; /* Header acima do vídeo */
        margin-top: 0; /* Remove qualquer margem negativa */
    }
}

@media screen and (max-width: 400px) {
    .video-container {
        height: 35vh;
        min-height: 250px;
        max-height: 400px;
    }
}

/* ==============================
   CORREÇÃO ESPECÍFICA PARA O PROBLEMA
   ============================== */

/* Se o vídeo ainda estiver a tapar conteúdo, 
   adicione estas regras emergenciais: */

/* 1. Garante que o container do vídeo tenha position relative */
.video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

/* 2. Remove qualquer margin/padding negativo que possa estar empurrando o vídeo */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 3. Força o header a começar depois do vídeo */
.video-container + .templatemo-container {
    clear: both; /* Limpa qualquer float */
    position: relative;
    z-index: 10;
    background: white; /* Garante que cubra qualquer overflow */
}

/* 4. Se usar transform: translate no vídeo, remove para mobile */
@media screen and (max-width: 768px) {
    .fullscreen-video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        transform: none !important;
        -webkit-transform: none !important;
    }
}

/* 5. Correção extra para iOS/Safari */
@supports (-webkit-touch-callout: none) {
    .video-container {
        -webkit-overflow-scrolling: touch;
        overflow: hidden;
        height: 50vh; /* Altura mais conservadora para iOS */
    }
    
    .fullscreen-video {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* ==============================
   VERSÃO ALTERNATIVA MAIS SEGURA
   ============================== */

/* Se ainda tiver problemas, use esta versão ULTRA SEGURA: */
.video-container-safe {
    width: 100%;
    position: relative;
    background: #000;
    /* Remove altura em vh que pode causar problemas */
    height: auto;
    padding-top: 56.25%; /* Aspect ratio 16:9 */
}

.video-container-safe video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Para mobile, aspect ratio mais quadrado */
@media screen and (max-width: 768px) {
    .video-container-safe {
        padding-top: 75%; /* 4:3 para mobile */
    }
}

@media screen and (max-width: 576px) {
    .video-container-safe {
        padding-top: 100%; /* 1:1 para celular pequeno */
    }
}

/* ==============================
   HTML CORRIGIDO (use esta versão)
   ============================== */