/* ==========================================================================
   Marina Sabater - Main Styles
   ========================================================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.services-tab-content ul{
    padding-left: 1rem;
    margin-block: 2rem;
}
.services-tab-content ul li{
    margin-bottom: .5rem;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

/* Smooth scroll for webkit browsers */
* {
    -webkit-overflow-scrolling: touch;
}

:root{
    --grid-limit: 1300px;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #892716;
    overflow-x: hidden;
    transition: opacity 0.3s ease-out;
}

/* Page loading state */
body.loading {
    overflow: hidden;
}

/* Body always visible */
body {
    opacity: 1;
}

/* Custom Fonts - Local Fonts */
@font-face {
    font-family: 'CS_Rachel';
    src: url('../fonts/CSRachel-Regular.woff2') format('woff2'),
         url('../fonts/CSRachel-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Host_Grotesk';
    src: url('../fonts/HostGrotesk-Light.woff2') format('woff2'),
         url('../fonts/HostGrotesk-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Font Loading States */
.fonts-loaded .hero-title,
.fonts-loaded .quote-text,
.fonts-loaded .content-title,
.fonts-loaded .info-text {
    font-family: 'CS_Rachel', 'Inter', serif;
}

.fonts-loaded .hero-subtitle {
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
}

.fonts-loaded .content-title-line:nth-child(2),
.fonts-loaded .content-title-line:nth-child(3) {
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 50%, #000000 100%);
    display: flex;
    flex-direction: column;
}

/* Hero Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.8;
    transition: opacity 0.6s ease;
}

.hero-bg-image.loaded {
    opacity: 0.8;
}

/* Hero Header */
.hero-header {
    position: absolute;
    z-index: 11;
    padding: 1.5rem 0;
    background: transparent;
    left: 0;
    top: 0;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #f4e7de;
    line-height: 1.2;
    text-transform: lowercase;
}

.logo-line {
    display: block;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-actions {
}

.social-icons {
    display: none;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: #f4e7de;
    border: 1px solid rgba(244, 231, 222, 0.3);
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(244, 231, 222, 0.1);
    border-color: rgba(244, 231, 222, 0.5);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.hero-text {
    text-align: center;
    max-width: 100%;
}

.hero-title {
    font-family: 'CS_Rachel', 'Inter', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #f4e7de;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-title-line {
    display: block;
    margin-bottom: 0.2rem;
}

.hero-title-line:nth-child(2) {
}

.hero-subtitle {
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #f4e7de;
    line-height: 1.2;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-divider {
    font-size: 1.25rem;
    opacity: 0.8;
}

.hero-subtitle-text {
    text-transform: uppercase;
    font-size: 0.875rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    right: 1rem;
    z-index: 10;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #892716;
    opacity: 1;
    background-color: #f5ebe3;
    padding: 1rem;
    bottom: 0;
    right: 0;
}

.scroll-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    white-space: nowrap;
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-0.5rem);
    }
    60% {
        transform: translateY(-0.25rem);
    }
}

/* ==========================================================================
   Content Section
   ========================================================================== */

.content-section {
    position: relative;
    background-color: #F4E7DE;
    overflow: hidden;
    padding: 4rem 0 0rem;
}

/* Content Decoration */
.content-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-svg {
    position: absolute;
    top: 15%;
    left: 0;
    width: 100%;
    height: auto;
    max-width: none;
    opacity: 0.6;
    transform: scaleY(-1);
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

/* Quote Section */
.content-quote {
    margin-bottom: 4rem;
}

.quote-text {
    font-family: 'CS_Rachel', 'Inter', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #892716;
    line-height: 1.3;
    margin: 0;
    padding: 0;
    border: none;
    text-align: left;
}

.quote-line {
    display: block;
    margin-bottom: 0.5rem;
}

.quote-line:last-child {
    margin-bottom: 0;
}

/* Main Content */
.content-main {
    margin-bottom: 4rem;
    text-align: center;
}

.content-title {
    font-family: 'CS_Rachel', 'Inter', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #892716;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

.content-title-line {
    display: block;
    margin-bottom: 0.2rem;
}

.content-title-line:first-child {
    font-family: 'CS_Rachel', 'Inter', serif;
    font-weight: 400;
}

.content-title-line:nth-child(2) {
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
    font-weight: 300;
}

.content-title-line:nth-child(3) {
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
    font-weight: 300;
}

/* Professional Info */
.content-info {
    margin-top: 2rem;
}

.info-text {
    font-family: 'CS_Rachel', 'Inter', serif;
    font-size: 1rem;
    font-weight: 400;
    color: #892716;
    line-height: 1.4;
    margin: 0;
    text-align: left;
}

.info-line {
    display: block;
    margin-bottom: 0.3rem;
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
}

.info-line:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Responsive Design - Mobile First
   ========================================================================== */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-subtitle-text {
        font-size: 1rem;
        letter-spacing: 4px;
    }
    
    .scroll-indicator {
        display: flex;
    }
    
    /* Content Section */
    .content-section {
        padding: 5rem 0;
    }
    
    .quote-text {
        font-size: 1.75rem;
    }
    
    .content-title {
        font-size: 4rem;
    }
    
    .info-text {
        font-size: 1.125rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .hero-section {
	    
        height: 85vh;
        min-height: 700px;
    }
    
    .hero-header {
        padding: 2rem 0;
    }
    
    .logo-text {
        font-size: 1.75rem;
    }
    
    .social-icons {
        display: flex;
    }
    
    .hero-content {
        padding: 4rem 0;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        margin-top: 1rem;
    }
    
    .scroll-indicator {
        right: 0;
    }
    
    /* Content Section */
    .content-section {
        padding: 2rem 0;
    }
    
    .content-wrapper {
        align-items: start;
    }
    
    .content-quote {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: 0;
    }
    
    .content-main {
        grid-column: 2;
        grid-row: 1;
        text-align: right;
        margin-bottom: 0;
    }
    
    .content-info {
        grid-column: 1;
        grid-row: 2;
        margin-top: 0;
    }
    
    .quote-text {
        font-size: 2rem;
    }
    
    .content-title {
        font-size: 5rem;
    }
    
    .info-text {
        font-size: 1.25rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .hero-header {
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 6rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-subtitle-text {
        font-size: 1rem;
    }
    
    /* Content Section */
    .content-section {
    }
    
    .content-wrapper {
        gap: 4rem;
    }
    
    .quote-text {
        font-size: 2.25rem;
    }
    
    .content-title {
        font-size: 6rem;
    }
    
    .info-text {
        font-size: 1.1rem;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 7rem;
    }
    
    .hero-subtitle {
        font-size: 1.375rem;
    }
    
    .hero-subtitle-text {
    font-size: 1.5rem;
    }
    
    /* Content Section */
    .content-section {
    }
    
    .content-wrapper {
        gap: 0;
        padding-bottom: 0;
    }
    
    .quote-text {
        font-size: 2.5rem;
    }
    
    .content-title {
        font-size: 7rem;
    }
    
    .info-text {
        font-size: 1.1rem;
    }
}

/* Ultra large devices (extra large desktops, 1400px and up) */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 8.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-subtitle-text {
    }
    
    .scroll-indicator {
        right: 0;
        bottom: 15vh;
    }
    
    /* Content Section */
    .content-section {
        padding: 4rem 0;
    }
    
    .quote-text {
        font-size: 2.3rem;
    }
    
    .content-title {
        font-size: 7.55rem;
    }
    
    .info-text {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Animations and Transitions - DISABLED (moved to entrance-animations.css)
   ========================================================================== */

/* Hero animations moved to entrance-animations.css to avoid conflicts */
/* .hero-title-line and .hero-subtitle animations now controlled by entrance-animations.css */

/* Content Section Animations - DISABLED (moved to entrance-animations.css) */
/* .content-quote, .content-main, .content-info animations now controlled by entrance-animations.css */

/* Fallback - show content after 2 seconds if animations don't trigger */
.content-quote,
.content-main,
.content-info {
    animation: showContentFallback 0.1s ease-out 2s forwards;
}

@keyframes showContentFallback {
    to {
        opacity: 1;
        transform: none;
    }
}

/* Force show content when loaded */
.content-loaded .content-quote,
.content-loaded .content-main,
.content-loaded .content-info,
.content-loaded .quote-line,
.content-loaded .content-title-line {
    opacity: 1 !important;
    transform: none !important;
}

.quote-line {
    display: block;
}

.content-title-line {
    display: block;
}

/* Fallback for individual lines */
.quote-line,
.content-title-line {
    animation: showLineFallback 0.1s ease-out 3s forwards;
}

@keyframes showLineFallback {
    to {
        opacity: 1;
        transform: none;
    }
}



/* ==========================================================================
   Utility Classes
   ========================================================================== */

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.overflow-hidden {
    overflow: hidden;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

/* Services Section Base */
.services-section {
    background-color: #ffffff;
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.services-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Services Background Text */
.services-bg-text {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    opacity: 0.1 !important;
    pointer-events: none;
}
@media (min-width: 992px){
    
    .services-bg-img{
      width: 80vw;
      position: relative;
      bottom: -3px;
      display: block;
    }
}

.services-bg-title {
    font-family: 'CS_Rachel', 'Inter', serif;
    font-size: 6rem;
    font-weight: 400;
    color: #892716;
    line-height: 0.8;
    margin: 0;
    text-transform: uppercase;
}

/* Services Layout */
.services-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Services Tabs Navigation */
.services-tabs {
    width: 100%;
}

.services-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 0.5rem;
    overflow: hidden;
    border-right: 1px solid;
    border-radius: 0;
}

.services-tab-link {
    display: block;
    padding: 1.5rem 1rem;
    color: #892716;
    text-decoration: none;
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(137, 39, 22, 0.1);
    position: relative;
    background-color: transparent;
}

.services-tab-link:hover {
    background-color: rgba(137, 39, 22, 0.1);
    text-decoration: none;
}

.services-tab-link.services-tab-active {
    background-color: #892716;
    color: #f4e7de;
    font-weight: 400;
}

.services-tab-link.services-tab-brand {
    font-size: 1rem;
    opacity: 0.7;
}


.services-submenu{
    margin-block: 1rem 0;
    display: none;
    flex: 1 1 auto;
    width: 100%;
}

.services-tab-link.services-tab-active .services-submenu{
    display: block !important;
}
.services-submenu span{
    display: block;
    margin-bottom: 1rem;
    font-size: .8rem;
    font-family: 'Inter';
}
.services-submenu-link{
    -webkit-appearance: none;
    border: none;
    padding: 0;
    background: none;
    color: #ffffff;
    margin-bottom: 0.6rem;
    display: block;
    font-size: 0.95rem;
    font-family: 'Inter';
    text-align: left;
    font-weight: 300;
    line-height: 1.4;
    cursor: pointer;
    transition: all 0.2s ease;
}
.services-submenu-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.services-submenu-link.active {
    text-decoration: underline;
    font-weight: 500;
}

.services-tab-link.services-tab-brand:hover {
    opacity: 1;
    background-color: transparent;
    color: #892716;
}

/* Services Content */
.services-content {
    width: 100%;
    position: relative;
}

.services-tab-content {
    display: none;
    width: 100%;
}

.services-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section - Always visible */
.services-section {
    opacity: 1;
}

.services-tab-link {
    opacity: 1;
}

.services-tab-content {
    opacity: 1;
    padding-top: 3rem;
}

/* Services Content Header */
.services-content-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.services-header-icon {
    flex-shrink: 0;
}

.services-header-icon svg {
    width: 100%;
    max-width: 8rem;
    height: auto;
}
@media (min-width: 992px){
	.services-header-icon svg {
	    max-width: 22rem;
	}
}

.services-content-title {
    font-family: 'CS_Rachel', 'Inter', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #892716;
    line-height: 1.2;
    margin: 0;
}

/* Services Content Body */
.services-content-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
#servicios-tab .services-content-body,
#internacional-tab .services-content-body{
	display: flex;
	max-width: 700px;
}

.services-content-left {
    order: 2;
}

.services-content-right {
    order: 1;
}

/* Services Subtitle */
.services-subtitle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
}

.services-subtitle svg {
    flex-shrink: 0;
}

.services-subtitle span {
    font-size: 1.5rem;
    font-weight: 600;
    color: #892716;
}

/* Services Description */
.services-description {
    margin-bottom: 2rem;
    display: block !important;
    opacity: 1 !important;
    visibility: visible;
    max-height: none !important;
    font-family:  Inter, sans-serif;
    font-size: 1rem;
}

.services-description p {
    font-family:  'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #892716;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Services List */
.services-list {
    margin-bottom: 2rem;
}

.services-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #892716;
    line-height: 2;
    margin-bottom: 0;
    text-transform: uppercase;
}

/* Services Contact Button */
.services-contact-btn {
    margin-top: 2rem;
}

.btn-contact {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #ffffff;
    color: #892716;
    border: 1px solid;
    text-decoration: none;
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #892716;
    color: #f4e7de;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Services Image */
.services-image {
    width: 100%;
    overflow: hidden;
}

.services-family-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border: 1px solid #892816;
}

/* Team member images */
.team-member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border: 1px solid #892816;
}

/* ==========================================================================
   Services Section - Responsive Design
   ========================================================================== */

/* Tablet - 768px and up */
@media (min-width: 768px) {
    .services-section {
        padding: 0;
    }
    
    .services-container {
        padding: 0;
    }
    
    .services-layout {
        grid-template-columns: 300px 1fr;
        gap: 3rem;
    }
    
    .services-content-body {
        grid-template-columns: 1fr 300px;
        gap: 3rem;
        align-items: start;
    }
    
    .services-content-left {
        order: 1;
    }
    
    .services-content-right {
        order: 2;
    }
    
    .services-bg-title {
        font-size: 12rem;
    }
    
    .services-content-title {
        font-size: 3rem;
    }
    
    .services-tab-link {
        font-size: 1.3rem;
        padding: 2rem 1.5rem;
    }
}

/* Desktop - 1024px and up */
@media (min-width: 1024px) {
    .services-section {
        padding: 0;
    }
    
    .services-layout {
        grid-template-columns: 350px 1fr;
        gap: 4rem;
    }
    
    .services-content-body {
        grid-template-columns: 1fr 300px;
        gap: 4rem;
    }
    
    .services-bg-title {
        font-size: 16rem;
    }
    
    .services-content-title {
        font-size: 3.5rem;
    }
    
    .services-description p {
        font-size: 1rem;
    }
    
    .services-list li {
        font-size: 1rem;
    }
    
    .services-tab-link {
        font-size: 1rem;
        padding: 3rem;
        min-height: 12rem;
        align-items: center;
        display: flex;
        flex-wrap: wrap;
    }
}

/* Large Desktop - 1200px and up */
@media (min-width: 1200px) {
    .services-layout {
        grid-template-columns: 400px 1fr;
        gap: 5rem;
    }
    
    .services-content-body {
        grid-template-columns: 1fr 350px;
        gap: 5rem;
    }
    
    .services-bg-title {
        font-size: 13vw;
        line-height: 0.7;
    }
    
    .services-content-title {
        font-size: 3rem;
    }
}

/* Extra Large - 1400px and up */
@media (min-width: 1400px) {
    .services-section {
        padding: 0;
    }
    
    .services-layout {
        grid-template-columns: 450px 1fr;
        gap: 4rem;
    }
    
    .services-content-body {
        grid-template-columns: 1fr 350px;
        gap: 3rem;
    }
    
    .services-bg-title {
        font-size: 12rem;
    }
}

/* ==========================================================================
  Section
   ========================================================================== */

/* Diferentes Section Base */
.diferentes-section {
    background-color: #C5CAC2;
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.diferentes-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Circular Text */
.circular-text {
    position: absolute;
    top: -8rem;
    right: 2rem;
    width: 8rem;
    height: 8rem;
    z-index: 3;
}

.circular-text-content {
    position: relative;
    width: 100%;
    height: 100%;
    /*animation: rotate 30s linear infinite;*/
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.circular-letter {
    position: absolute;
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #892716;
    transform-origin: 50% 4rem;
    text-transform: uppercase;
}

/* Gray Content Area */
.gray-content {
    /* background-color: #dfdbd7; */
    border-radius: 1rem;
    padding: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* Main Title */
.main-title {
    margin-block: 3rem;
}

.title-line {
    display: block;
    margin: 0;
    line-height: 1.1;
    color: #892716;
    text-transform: uppercase;
}

.title-line-normal {
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: bold;
}

.title-line-fancy {
    font-family: 'CS_Rachel', 'Inter', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-top: 0.5rem;
}

/* Text Content */
.text-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    display: flex;
    flex-direction: column;
}

.text-paragraph {
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #892716;
    line-height: 1.6;
    margin: 0;
}

/* Images Content */
.images-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background-color: #ffffff;
}

/* Animation States - DISABLED (moved to entrance-animations.css) */
/* .diferentes-section, .gray-content, .title-line, .text-paragraph animations now controlled by entrance-animations.css */

.image-left,
.image-right {
    display: block;
}

.diferentes-img {
    transition: all 0.3s ease-out;
}

.diferentes-img.hover-effect {
    transform: scale(1.05);
}

/* Left Image */
.image-left {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.image-container {
    position: relative;
    overflow: hidden;
}

.diferentes-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border: 1px solid #892816;
}

.image-description {
    padding: 1rem 0;
}

.description-text {
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #892716;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.description-text:last-child {
    margin-bottom: 0;
}

/* Right Image */
.image-right {
    position: relative;
}

.image-right .image-container {
    background: linear-gradient(45deg, #892716, #a0442b);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
}

.overlay-text {
    text-align: center;
    color: #f4e7de;
}

.overlay-title {
    font-family: 'CS_Rachel', 'Inter', serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

.overlay-subtitle {
    font-family: 'CS_Rachel', 'Inter', serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
}

/* ==========================================================================
   Diferentes Section - Responsive Design
   ========================================================================== */

/* Tablet - 768px and up */
@media (min-width: 768px) {
    .diferentes-section {
        padding: 6rem 0;
    }
    
    .diferentes-container {
        padding: 0 2rem;
    }
    
    .circular-text {
        width: 10rem;
        height: 10rem;
        top: 3rem;
        right: 3rem;
    }
    
    .circular-letter {
        font-size: 1rem;
        transform-origin: 50% 5rem;
    }
    
    .gray-content {
        padding: 4rem 3rem;
    }
    
    .title-line-normal {
        font-size: 4rem;
    }
    
    .title-line-fancy {
        font-size: 4rem;
    }
    
    .text-content {
    text-align: right;
    }
    
    .images-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .image-left {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 430px;
    }
    
    .overlay-title {
        font-size: 3rem;
    }
    
    .overlay-subtitle {
        font-size: 2.2rem;
    }
}

/* Desktop - 1024px and up */
@media (min-width: 1024px) {
    .diferentes-section {
        padding: 0;
        min-height: 0;
    }
    
    .circular-text {
        width: 12rem;
        height: 12rem;
        top: 4rem;
        right: 4rem;
    }
    
    .circular-letter {
        font-size: 1.1rem;
        transform-origin: 50% 6rem;
    }
    
    .gray-content {
        padding: 5rem 4rem 1rem;
    }
    
    .title-line-normal {
        font-size: 5rem;
    }
    
    .title-line-fancy {
        font-size: 5rem;
    }
    
    .text-content {
    }
    
    .images-content {
        gap: 4rem;
    }
    
    .image-description {
        padding: 0rem 0 5rem;
    }
    
    .description-text {
        font-size: 0.9rem;
    }
    
    .overlay-title {
        font-size: 3.5rem;
    }
    
    .overlay-subtitle {
        font-size: 2.5rem;
    }
}

/* Large Desktop - 1200px and up */
@media (min-width: 1200px) {
    .title-line-normal {
        font-size: 6rem;
    }
    
    .title-line-fancy {
        font-size: 6rem;
    }
    
    .text-content {
    }
    
    .images-content {
        gap: 5rem;
    }
    
    .overlay-title {
        font-size: 4rem;
    }
    
    .overlay-subtitle {
        font-size: 3rem;
    }
}

/* Extra Large - 1400px and up */
@media (min-width: 1400px) {
    .diferentes-section {
        padding: 0;
    }
    
    .circular-text {
        width: 13rem;
        height: 13rem;
        top: 5rem;
        right: 5rem;
    }
    
    .circular-letter {
        font-size: 1.3rem;
        transform-origin: 50% 7.5rem;
    }
    
    .gray-content {
        padding: 4rem 5rem 4rem;
    }
    
    .title-line-normal {
        font-size: 6rem;
    }
    
    .title-line-fancy {
        font-size: 6rem;
    }
}


#gallerysection{
    position: relative;
    z-index: 1;
    padding-top: 4rem;
}

@media (min-width: 992px){
	
	#gallerysection{}
	#gallerysection .image-left{}
	#gallerysection .image-right{
		position: relative;
		top: 5rem;
	}
}

/* ==========================================================================
   Accessibility - Reduce Motion
   ========================================================================== */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .hero-title-line,
    .hero-subtitle {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    /* Content Section - Reduced Motion */
    .content-quote,
    .content-main,
    .content-info,
    .quote-line,
    .content-title-line {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .decoration-svg {
        transition: none;
    }
    
    /* Services Section - Reduced Motion */
    .services-tab-content {
        animation: none !important;
    }
    
    .services-tab-link,
    .btn-contact {
        transition: none !important;
    }
    
    /* Diferentes Section - Reduced Motion */
    .circular-text-content {
        animation: none !important;
    }
    
    .circular-letter {
        transition: none !important;
    }
}


@media (max-width: 991px){
	.image-right{
		margin-bottom: -100px;
	}
}
