@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --color-primary: #ec0000;
    --color-primary-hover: #c40000;
    --color-primary-rgb: 236, 0, 0;
    --color-accent: #7cb342;
    --color-accent-hover: #689f38;
    --color-accent-rgb: 124, 179, 66;
    --color-text-main: #2d3130;
    --color-text-muted: #5e6563;
    --color-bg-main: #fcfdfe;
    --color-bg-alt: #f1f5f2;
    --color-bg-card: #ffffff;
    --color-border: #e2e8f0;
    --color-footer: #181b1a;

    /* Fonts */
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Transitions & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    
    /* Layout Constants */
    --max-width: 1200px;
    --header-height: 140px;
}

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

/* Accessibility */
:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--color-footer);
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    transition: top 0.3s;
    font-weight: 600;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-main);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition-smooth);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-main);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Structural Components */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-text-main);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    height: 100px;
    box-shadow: var(--shadow-sm);
    background-color: rgba(255, 255, 255, 0.95);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
}

.logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.main-header.scrolled .logo-img {
    height: 80px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-text-main);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-socials-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 8px;
    border-left: 1px solid var(--color-border);
    padding-left: 20px;
}

.nav-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: var(--color-text-main);
    transition: var(--transition-smooth);
}

.nav-social-icon:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(236, 0, 0, 0.15);
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    z-index: 1001;
}

.mobile-nav-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--color-text-main);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 40px);
    display: flex;
    align-items: center;
    background-color: var(--color-bg-main);
    overflow: hidden;
}

.hero-background-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    filter: saturate(1.2);
}

.hero-radial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, var(--color-bg-main) 70%);
}

.hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(124, 179, 66, 0.08);
    color: var(--color-accent);
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(124, 179, 66, 0.15);
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
    animation: pulse-dot-green 1.8s infinite;
}

.hero-logo-center {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-logo-img {
    height: 140px;
    width: auto;
}

.hero-logo-text {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.1;
    border-left: 3px solid var(--color-accent);
    padding-left: 16px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 24px;
    line-height: 1.15;
    animation: fadeInUp 1s ease-out;
}

.hero-title span {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 1.2s ease-out;
}

.hero-actions {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1.4s ease-out;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(236, 0, 0, 0.2);
}

.btn-secondary {
    background-color: #ffffff;
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background-color: var(--color-bg-alt);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Floating Images Composition */
.hero-visual-wrapper {
    position: relative;
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-image-container {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid #ffffff;
    transition: var(--transition-smooth);
}

.circle-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.circle-image-container:hover {
    transform: scale(1.08) !important;
    border-color: var(--color-accent);
    z-index: 10;
}

.circle-1 {
    width: 240px;
    height: 240px;
    top: 140px;
    left: 130px;
    animation: float 6s ease-in-out infinite;
    z-index: 4;
}

.circle-2 {
    width: 160px;
    height: 160px;
    top: 30px;
    right: 20px;
    animation: float-reverse 7s ease-in-out infinite 0.5s;
    z-index: 3;
}

.circle-3 {
    width: 180px;
    height: 180px;
    bottom: 30px;
    right: 30px;
    animation: float 8s ease-in-out infinite 1s;
    z-index: 3;
}

.circle-4 {
    width: 140px;
    height: 140px;
    top: 290px;
    left: 20px;
    animation: float-reverse 5s ease-in-out infinite 1.5s;
    z-index: 5;
}

/* Central Decorative Ring */
.central-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 2px dashed rgba(124, 179, 66, 0.3);
    border-radius: 50%;
    top: 100px;
    left: 90px;
    z-index: 1;
    animation: rotate-ring 40s linear infinite;
}

/* Wellbeing Section */
.wellbeing-intro {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

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

.wellbeing-text-block h2 {
    font-size: 2.2rem;
    color: var(--color-text-main);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.wellbeing-text-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

.wellbeing-text-block p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.wellbeing-portal-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-left: 24px;
    border-left: 1px solid var(--color-border);
    width: 100%;
}

.wellbeing-portal-logo {
    height: 115px;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.wellbeing-portal-logo:hover {
    transform: scale(1.05);
}

.wellbeing-portal-btn {
    width: 100%;
    justify-content: center;
}

.wellbeing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: var(--color-bg-card);
    border-radius: 20px;
    padding: 0;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
    z-index: 10;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(124, 179, 66, 0.3);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-img-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: var(--color-bg-alt);
}

.benefit-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-img {
    transform: scale(1.06);
}

.benefit-icon-wrapper {
    position: absolute;
    top: 152px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background-color: var(--color-bg-card);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
    z-index: 5;
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon-wrapper {
    background-color: var(--color-accent);
    color: #ffffff;
    border-color: var(--color-accent);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 16px rgba(124, 179, 66, 0.25);
}

.benefit-content {
    padding: 38px 24px 28px 24px;
    flex-grow: 1;
}

.benefit-card h3 {
    font-size: 1.35rem;
    color: var(--color-text-main);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.podcast-banner-link {
    display: block;
    margin-top: 50px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.podcast-banner-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.podcast-banner-container {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    min-height: 250px;
    background-color: var(--color-bg-alt);
    display: flex;
    overflow: hidden;
}

.podcast-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.podcast-banner-link:hover .podcast-banner-img {
    transform: scale(1.03);
}

.podcast-banner-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(24, 27, 26, 0.8) 0%, rgba(24, 27, 26, 0.2) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    font-family: var(--font-headings);
    transition: var(--transition-smooth);
    z-index: 2;
}

.podcast-banner-link:hover .podcast-banner-hover-overlay {
    opacity: 1;
}

.play-button-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(236, 0, 0, 0.4);
    transition: var(--transition-smooth);
    padding-left: 4px;
}

.podcast-banner-link:hover .play-button-icon {
    transform: scale(1.1);
    background-color: var(--color-primary-hover);
}

/* Sindicatos Section */
.sindicatos-section {
    background-color: var(--color-bg-alt);
    position: relative;
}

.sindicatos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.sindicato-card {
    background-color: var(--color-bg-card);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 380px;
    transition: var(--transition-smooth);
}

.sindicato-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(236, 0, 0, 0.3);
}

.sind-logo-container {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: #f8fafc;
    border: 2px solid rgba(226, 232, 240, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    overflow: hidden;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.sind-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.sind-logo-zoom {
    transform: scale(1.4);
}

.sind-logo-zoom-129 {
    transform: scale(1.1);
}

.sind-logo-zoom-132 {
    transform: scale(0.9);
    border-radius: 0;
    object-fit: contain;
}

.sindicato-card:hover .sind-logo-container {
    border-color: var(--color-primary);
    background-color: #ffffff;
    box-shadow: 0 8px 16px rgba(236, 0, 0, 0.1);
}

.sindicato-card:hover .sind-logo-img {
    transform: scale(1.1);
}

.sind-info {
    margin-top: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sind-number {
    font-family: var(--font-headings);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.sind-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 8px;
}

.sind-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* Sindicato Generic placeholder (136) */
.sind-generic-logo {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(236, 0, 0, 0.05) 0%, rgba(124, 179, 66, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    border: 2px dashed #cbd5e1;
    transition: var(--transition-smooth);
}

.sind-generic-logo svg {
    font-size: 2.5rem;
    margin-bottom: 8px;
    color: var(--color-primary);
    opacity: 0.8;
}

.sind-generic-logo span {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.sindicato-card:hover .sind-generic-logo {
    background: linear-gradient(135deg, rgba(236, 0, 0, 0.1) 0%, rgba(124, 179, 66, 0.1) 100%);
    border-color: var(--color-primary);
}

/* Sindicato 131 Alternative Toggle UI */
.sind-toggle-btn {
    margin-top: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-bottom: 1px dashed var(--color-accent);
    padding-bottom: 2px;
}

.sind-toggle-btn:hover {
    color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
}

/* Contact and CTAs Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.ctas-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-button {
    display: flex;
    align-items: center;
    padding: 24px;
    border-radius: 16px;
    color: #ffffff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: var(--transition-smooth);
}

.cta-button:hover::before {
    transform: translateX(0);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cta-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 20px;
    flex-shrink: 0;
}

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

.cta-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.cta-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-top: 2px;
}

/* CTA Color Customizations */
.cta-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.cta-podcast {
    background: linear-gradient(135deg, #ec0000 0%, #900 100%);
}

.cta-linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #004b73 100%);
}

/* Contact Form Container */
.contact-form-wrapper {
    background-color: var(--color-bg-card);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    font-size: 1.6rem;
    color: var(--color-text-main);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: #f8fafc;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    color: var(--color-text-main);
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    background-color: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(236, 0, 0, 0.08);
}

textarea.form-control {
    resize: none;
    min-height: 120px;
}

.form-submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--color-primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit-btn:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(236, 0, 0, 0.15);
}

.form-submit-btn:active {
    transform: translateY(0);
}

/* Footer Section */
.main-footer {
    background-color: var(--color-footer);
    color: #ffffff;
    padding: 60px 0 30px 0;
    border-top: 4px solid var(--color-primary);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo-img {
    height: 110px;
}

.footer-logo-text {
    font-family: var(--font-headings);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
    border-left: 2px solid var(--color-accent);
    padding-left: 12px;
    max-width: 250px;
    color: #e2e8f0;
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav-link {
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-nav-link:hover {
    color: #ffffff;
}

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

.footer-copyright {
    color: #64748b;
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-reverse {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(12px) rotate(-1.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes rotate-ring {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse-dot {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 6px rgba(236, 0, 0, 0.2); }
    100% { transform: scale(0.9); opacity: 0.6; }
}

@keyframes pulse-dot-green {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 6px rgba(124, 179, 66, 0.25); }
    100% { transform: scale(0.9); opacity: 0.6; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll Animation System */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay Utilities */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .wellbeing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sindicatos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .circle-1 { width: 200px; height: 200px; }
    .circle-2 { width: 130px; height: 130px; }
    .circle-3 { width: 140px; height: 140px; }
    .circle-4 { width: 100px; height: 100px; }
    .central-ring { width: 260px; height: 260px; }
}

@media (max-width: 768px) {
    :root {
        --header-height: 110px;
    }
    
    .logo-img {
        height: 80px;
    }

    .main-header.scrolled {
        height: 85px;
    }

    .main-header.scrolled .logo-img {
        height: 65px;
    }
    
    .section-padding {
        padding: 70px 0;
    }

    .header-container {
        padding: 0 16px;
    }
    
    /* Navigation Menu for mobile */
    .nav-bar {
        display: contents;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - var(--header-height));
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        gap: 24px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
        transition: var(--transition-smooth);
        border-left: 1px solid var(--color-border);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-socials-wrapper {
        margin-left: 0;
        border-left: none;
        padding-left: 0;
        margin-top: 12px;
        width: 100%;
        justify-content: flex-start;
        gap: 16px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-logo-center {
        justify-content: center;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
        width: 100%;
    }
    
    .hero-visual-wrapper {
        height: 400px;
    }
    
    .circle-1 { left: 15%; top: 60px; width: 180px; height: 180px; z-index: 4; }
    .circle-2 { right: 5%; top: 20px; width: 120px; height: 120px; z-index: 3; }
    .circle-3 { right: 10%; bottom: 20px; width: 130px; height: 130px; z-index: 3; }
    .circle-4 { left: 5%; top: 250px; width: 100px; height: 100px; z-index: 5; }
    .central-ring { left: 10%; top: 40px; width: 220px; height: 220px; }

    .wellbeing-intro {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 24px;
    }
    
    .wellbeing-text-block {
        text-align: center;
    }
    
    .wellbeing-text-block h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .wellbeing-portal-card {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--color-border);
        padding-top: 24px;
    }

    .podcast-banner-link {
        margin-top: 40px;
        border-radius: 16px;
    }
    
    .podcast-banner-container {
        aspect-ratio: 16 / 9;
        min-height: 180px;
    }
    
    .podcast-banner-hover-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(24, 27, 26, 0.7) 0%, rgba(24, 27, 26, 0.1) 100%);
    }

    .sindicatos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-brand {
        flex-direction: column;
    }
    
    .footer-logo-text {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid var(--color-accent);
        padding-top: 12px;
    }
}

@media (max-width: 520px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
    }
    
    .wellbeing-grid {
        grid-template-columns: 1fr;
    }
    
    .sindicatos-grid {
        grid-template-columns: 1fr;
    }
    
    .sindicato-card {
        height: auto;
        padding: 40px 24px;
        gap: 16px;
    }
    
    .contact-form-wrapper {
        padding: 24px 16px;
    }
}
