/* Hero Section - Fixed Button Layout */
.hero-section-elemento {
    background: linear-gradient(135deg, #f5f3e8 0%, #ede8d8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.container {
    max-width: 1600px !important;
    padding: 0 2rem;
    width: 100%;
}

.hero-content-elemento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    width: 100%;
}

/* Hero Text */
.hero-text-elemento {
    z-index: 2;
}

.hero-title-elemento {
    font-size: 4rem;
    font-weight: 700;
    line-height: 2.1;
    margin-bottom: 2rem;
    color: #333;
    text-transform: none;
    letter-spacing: 0px;
}

.highlight-fitness {
    color: #d4af37;
    position: relative;
}

.highlight-fitness::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 6px;
    background: #d4af37;
}

.highlight-coach {
    color: #d4af37;
}

.hero-subtitle-elemento {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #666;
    max-width: 500px;
}

/* Fixed: Horizontal Button Layout */
.hero-actions-elemento {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    max-width: 400px;
}

.btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
    min-height: 52px;
    line-height: 1.2;
    border: none;
    width: 100%;
}

.btn-primary-elemento {
    background: #dc2626;
    color: white;
}

.btn-primary-elemento:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

/* Hero Visual - Right Side */
.hero-visual-elemento {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.elemento-card {
    background: #4a4237;
    border-radius: 20px;
    padding: 8rem 2.5rem;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    height: 550px;
    transform: translate(10px, 10px);
    max-width: 590px;
}

.card-logo {
    margin-bottom: 2rem;
}

.logo-icon {
    width: 80px;
    height: 80px;
    border: 3px solid #d4af37;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.logo-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.logo-lines span {
    display: block;
    height: 4px;
    background: #d4af37;
    border-radius: 2px;
}

.logo-lines span:nth-child(1) { width: 30px; }
.logo-lines span:nth-child(2) { width: 20px; }
.logo-lines span:nth-child(3) { width: 25px; }

.brand-text h2 {
    color: #d4af37;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
}

.brand-text p {
    color: rgba(212, 175, 55, 0.8);
    font-size: 1rem;
    letter-spacing: 3px;
    margin: 0;
    font-weight: 300;
}

/* Floating Elements */
.floating-elements-elemento {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.element-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    animation: float 8s ease-in-out infinite;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.element-circle:hover {
    transform: scale(1.2);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    animation-play-state: paused;
}

/* Element Colors and Positioning */
.fire-element {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.earth-element {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.water-element {
    background: linear-gradient(135deg, #4A90E2 0%, #2171b5 100%);
    bottom: 25%;
    right: 15%;
    z-index:2 !important;
    animation-delay: 4s;
}

.air-element {
    background: linear-gradient(135deg, #9B59B6 0%, #8e44ad 100%);
    bottom: 10%;
    left: 15%;
    animation-delay: 6s;
}

/* Tooltips */
.element-tooltip {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    min-width: 160px;
    z-index: 1000;
    border: 2px solid #f0f0f0;
}

.element-circle:hover .element-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.tooltip-header {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tooltip-header.fire { color: #ff6b35; border-color: #ff6b35; }
.tooltip-header.earth { color: #8B4513; border-color: #8B4513; }
.tooltip-header.water { color: #4A90E2; border-color: #4A90E2; }
.tooltip-header.air { color: #9B59B6; border-color: #