/* ============================================
   CSS VARIABLES & RESET
   ============================================ */

:root {
    /* Earth Tones - Ancestral Color Palette */
    --earth-dark: #2a1810;
    --earth-brown: #5d3a1a;
    --earth-medium: #8b5a3c;
    --earth-light: #c9a87c;
    --earth-sand: #e8d4b8;
    --earth-cream: #f5ede1;
    
    /* Sacred Colors */
    --sacred-gold: #d4af37;
    --sacred-copper: #b87333;
    --sacred-sage: #8a9a5b;
    --sacred-turquoise: #3a7d7d;
    --sacred-violet: #6b4e71;
    
    /* Nature Greens */
    --forest-dark: #1a3a2e;
    --forest-green: #2d5f4a;
    --moss-green: #5a7c59;
    --sage-light: #a8b89f;
    
    /* Neutral Tones */
    --white-smoke: #f8f5f0;
    --cream-white: #faf7f2;
    --shadow-dark: rgba(42, 24, 16, 0.4);
    --shadow-light: rgba(42, 24, 16, 0.1);
    
    /* Gradients */
    --gradient-earth: linear-gradient(135deg, var(--earth-brown) 0%, var(--earth-medium) 100%);
    --gradient-sacred: linear-gradient(135deg, var(--sacred-copper) 0%, var(--sacred-gold) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(42, 24, 16, 0.7) 0%, rgba(42, 24, 16, 0.3) 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-body: 'Cormorant Garamond', serif;
    --font-accent: 'Philosopher', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream-white);
    color: var(--earth-dark);
    line-height: 1.8;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

* {
    box-sizing: border-box;
}

section {
    overflow-x: hidden;
    width: 100%;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 245, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--earth-light);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px var(--shadow-light);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo img {
    height: 50px;
    filter: drop-shadow(0 2px 4px var(--shadow-light));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: rotate(15deg) scale(1.1);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-sacred);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--earth-brown);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-sacred);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--earth-brown);
    transition: var(--transition-smooth);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('imagenes/hero.webp') center/cover,
        var(--gradient-earth);
    background-blend-mode: multiply;
    will-change: transform;
}

/* Subtle zoom animation - doesn't affect layout */
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-background {
    animation: slowZoom 30s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 900px;
    animation: fadeInUp 1.2s ease-out;
}

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

.hero-symbol {
    margin-bottom: 2rem;
    animation: rotateSymbol 20s linear infinite;
}

.hero-symbol img{
    height: 100px;
    margin: 0 auto;
}

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

.sacred-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
}

.circle-outer,
.circle-middle,
.circle-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--sacred-gold);
    border-radius: 50%;
    opacity: 0.8;
}

.circle-outer {
    width: 120px;
    height: 120px;
    animation: pulse 3s ease-in-out infinite;
}

.circle-middle {
    width: 80px;
    height: 80px;
    animation: pulse 3s ease-in-out infinite 0.5s;
}

.circle-inner {
    width: 40px;
    height: 40px;
    background: var(--sacred-gold);
    animation: pulse 3s ease-in-out infinite 1s;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.hero-title {
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: block;
    color: var(--white-smoke);
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.hero-title-main {
    font-size: 5rem;
    font-weight: 700;
    background: var(--gradient-sacred);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--earth-sand);
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease-out 0.9s both;
}

.hero-divider {
    margin: 2rem 0;
    animation: fadeInUp 1.2s ease-out 1.2s both;
}

.divider-symbol {
    color: var(--sacred-gold);
    font-size: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--earth-cream);
    line-height: 1.8;
    margin-bottom: 3rem;
    animation: fadeInUp 1.2s ease-out 1.5s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: var(--gradient-sacred);
    color: var(--earth-dark);
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    transition: var(--transition-spring);
    animation: fadeInUp 1.2s ease-out 1.8s both;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1.2s ease-out 2.1s both;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--sacred-gold), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */

section {
    padding: var(--spacing-xl) 2rem;
    position: relative;
    width: 100%;
    clear: both;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding: 0 1rem;
    padding-top: 2rem;
    position: relative;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--sacred-copper);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--sacred-copper);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    padding: 0 1rem;
}

.section-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.ornament-symbol {
    color: var(--sacred-gold);
    font-size: 1.2rem;
}

.ornament-line {
    width: 80px;
    height: 2px;
    background: var(--gradient-sacred);
}

/* ============================================
   CEREMONIAS SECTION
   ============================================ */

.ceremonias {
    background: linear-gradient(135deg, var(--white-smoke) 0%, var(--cream-white) 100%);
    position: relative;
    padding: 8rem 2rem 6rem 2rem;
    width: 100%;
    display: block;
}

.ceremonias::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-sacred);
    opacity: 0.3;
}

.ceremonias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: var(--spacing-lg);
}

.ceremony-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-light);
    transition: var(--transition-spring);
    position: relative;
}

.ceremony-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-dark);
}

.card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ceremony-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    opacity: 0.6;
}

.card-tradition {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.9);
    color: var(--earth-dark);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 20px;
    text-transform: uppercase;
}

.ceremony-card[data-tradition="americana"] .card-tradition {
    background: rgba(138, 154, 91, 0.9);
}

.card-content {
    padding: 2rem;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--earth-dark);
    margin-bottom: 1rem;
}

.card-description {
    font-size: 1.1rem;
    color: var(--earth-brown);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-elements {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.card-elements span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--earth-sand);
    color: var(--earth-brown);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    border-radius: 20px;
    white-space: nowrap;
    line-height: 1.4;
}

.card-elements i {
    color: var(--sacred-copper);
    font-size: 0.9rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background: var(--earth-dark);
    color: var(--cream-white);
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 6rem 2rem;
    width: 100%;
    display: block;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
} 

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.about-image {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.image-frame {
    margin-top: 100px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.image-ornament {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--sacred-gold);
    opacity: 0.6;
}

.image-ornament-1 {
    top: -15px;
    left: -15px;
    border-right: none;
    border-bottom: none;
    border-radius: 15px 0 0 0;
}

.image-ornament-2 {
    top: -15px;
    right: -15px;
    border-left: none;
    border-bottom: none;
    border-radius: 0 15px 0 0;
}

.image-ornament-3 {
    bottom: -15px;
    left: -15px;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 15px;
}

.image-ornament-4 {
    bottom: -15px;
    right: -15px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 15px 0;
}

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

.about-content .section-subtitle {
    color: var(--sacred-gold);
}

.about-content .section-title {
    color: var(--cream-white);
}

.about-content .ornament-symbol {
    color: var(--sacred-gold);
}

.about-text {
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    color: var(--earth-sand);
    text-align: left;
}

.about-qualities {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: rgba(212, 175, 55, 0.15);
    border-left: 4px solid var(--sacred-gold);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.quality-item:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: translateX(10px);
}

.quality-item i {
    font-size: 2rem;
    color: var(--sacred-gold);
    flex-shrink: 0;
    min-width: 35px;
}

.quality-item span {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    line-height: 1.5;
    text-align: left;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    background: var(--earth-dark);
    color: var(--cream-white);
    position: relative;
    padding: 8rem 2rem 6rem 2rem;
    width: 100%;
    display: block;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-content {
    background: rgba(93, 58, 26, 0.5);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.contact-content .section-subtitle {
    color: var(--sacred-gold);
}

.contact-content .section-title {
    color: var(--cream-white);
}

.contact-description {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--earth-cream);
    margin: 2rem 0 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(42, 24, 16, 0.5);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 15px;
    transition: var(--transition-spring);
}

.contact-link:hover {
    background: rgba(42, 24, 16, 0.7);
    border-color: var(--sacred-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.contact-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-sacred);
    border-radius: 50%;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.contact-link.whatsapp .contact-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-link.instagram .contact-icon {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #F77737 100%);
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
}

.contact-label {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--earth-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--cream-white);
    font-weight: 600;
}

.contact-quote {
    margin-top: 4rem;
    padding: 2.5rem 2rem;
    position: relative;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.contact-quote i {
    color: var(--sacred-gold);
    font-size: 1.5rem;
    opacity: 0.5;
    display: inline-block;
}

.contact-quote i:first-child {
    margin-bottom: 1rem;
}

.contact-quote i:last-child {
    margin-top: 1rem;
}

.contact-quote p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--cream-white);
    margin: 1.5rem 0;
    line-height: 2;
    padding: 0 1rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--earth-dark);
    color: var(--earth-sand);
    padding: var(--spacing-lg) 2rem var(--spacing-md);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-logo-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    filter: drop-shadow(0 4px 8px var(--shadow-light));
}

.footer-logo h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--sacred-gold);
    margin-bottom: 0.5rem;
}

.footer-logo p {
    font-family: var(--font-accent);
    color: var(--earth-light);
    font-size: 0.95rem;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--sacred-gold);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--earth-sand);
    font-family: var(--font-accent);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--sacred-gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--sacred-copper);
    border-radius: 50%;
    color: var(--sacred-gold);
    font-size: 1.5rem;
    transition: var(--transition-spring);
}

.social-links a:hover {
    background: var(--sacred-gold);
    color: var(--earth-dark);
    transform: translateY(-5px) rotate(10deg);
}

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

.footer-symbol {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    position: relative;
}

.symbol-circle {
    width: 60px;
    height: 60px;
    border: 2px solid var(--sacred-gold);
    border-radius: 50%;
    animation: rotateSymbol 15s linear infinite;
}

.symbol-cross {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
}

.symbol-cross::before,
.symbol-cross::after {
    content: '';
    position: absolute;
    background: var(--sacred-gold);
}

.symbol-cross::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.symbol-cross::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.footer-quote {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-style: italic;
    color: var(--earth-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom p {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    color: var(--earth-light);
    margin-bottom: 0.5rem;
}

.footer-blessing {
    color: var(--sacred-gold);
    font-style: italic;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Desktop layout for About section */
@media (min-width: 1025px) {
    .about-container {
        grid-template-columns: 400px 1fr;
        gap: 4rem;
    }
    
    .about-content {
        text-align: left;
    }
    
    .about-text {
        text-align: left;
    }
    
    .about-text p {
        text-align: left;
    }
    
    .about-qualities {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-title-main {
        font-size: 3.5rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .ceremonias-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-content {
        padding: 2.5rem 2rem;
    }
    
    .wisdom-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
    
    .wisdom-card {
        min-height: 280px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: rgba(248, 245, 240, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px var(--shadow-dark);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title-main {
        font-size: 2.8rem;
    }
    
    .hero-title-line {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .ceremonias-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .wisdom-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .wisdom {
        padding: 5rem 1.5rem 4rem 1.5rem;
    }
    
    .wisdom-card {
        min-height: auto;
        padding: 2rem 1.5rem;
    }
    
    .contact {
        padding: 5rem 1.5rem 4rem 1.5rem;
    }
    
    .contact-link {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }
    
    .contact-value {
        font-size: 1.2rem;
    }
    
    .contact-quote {
        padding: 2rem 1.2rem;
        margin-top: 3rem;
    }
    
    .contact-quote p {
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .about {
        padding: 5rem 1.5rem 4rem 1.5rem;
    }
    
    .about-text p {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .quality-item {
        padding: 1.2rem 1.5rem;
    }
    
    .quality-item i {
        font-size: 1.7rem;
    }
    
    .quality-item span {
        font-size: 1.05rem;
    }
    
    .ceremonias {
        padding: 5rem 1.5rem 4rem 1.5rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    section {
        padding: 4rem 1rem;
    }
    
    .ceremonias {
        padding: 4rem 1rem;
    }
    
    .wisdom {
        padding: 4rem 1rem;
    }
    
    .about {
        padding: 4rem 1rem;
    }
    
    .contact {
        padding: 4rem 1rem;
    }
    
    .nav-container {
        padding: 0.8rem 1rem;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .hero-title-main {
        font-size: 2.2rem;
    }
    
    .hero-title-line {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-cta {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        letter-spacing: 0.2em;
    }
    
    .card-content {
        padding: 1.3rem;
    }
    
    .card-title {
        font-size: 1.4rem;
    }
    
    .card-description {
        font-size: 0.95rem;
    }
    
    .card-elements span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .wisdom-card {
        padding: 1.8rem 1.2rem;
    }
    
    .wisdom-card h3 {
        font-size: 1.2rem;
    }
    
    .wisdom-card p {
        font-size: 0.95rem;
    }
    
    .wisdom-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-content {
        padding: 2rem 1rem;
    }
    
    .contact-description {
        font-size: 1.05rem;
    }
    
    .contact-link {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        gap: 1rem;
    }
    
    .contact-info {
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .contact-value {
        font-size: 1.05rem;
    }
    
    .contact-label {
        font-size: 0.85rem;
    }
    
    .contact-quote {
        padding: 1.5rem 1rem;
        margin-top: 2.5rem;
    }
    
    .contact-quote p {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .about-text p {
        font-size: 1.05rem;
    }
    
    .quality-item {
        padding: 1rem 1.2rem;
        gap: 0.9rem;
    }
    
    .quality-item i {
        font-size: 1.5rem;
        min-width: 28px;
    }
    
    .quality-item span {
        font-size: 0.95rem;
    }
    
    .contact {
        padding: 3.5rem 1rem;
    }
    
    .contact-content {
        padding: 2rem 1rem;
    }
    
    .contact-description {
        font-size: 1.05rem;
    }
    
    .contact-link {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        gap: 1rem;
    }
    
    .contact-info {
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .contact-value {
        font-size: 1.05rem;
    }
    
    .contact-label {
        font-size: 0.85rem;
    }
    
    .contact-quote {
        padding: 1.5rem 1rem;
        margin-top: 2.5rem;
    }
    
    .contact-quote p {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .about {
        padding: 3rem 1rem;
    }
    
    .about-text p {
        font-size: 1.05rem;
    }
    
    .quality-item {
        padding: 1rem 1.2rem;
        gap: 0.9rem;
    }
    
    .quality-item i {
        font-size: 1.5rem;
        min-width: 28px;
    }
    
    .quality-item span {
        font-size: 0.95rem;
    }
    
    .footer-logo-img {
        width: 60px;
        height: 60px;
    }
    
    .footer-logo h3 {
        font-size: 1.3rem;
    }
}

/* ============================================
   SCROLL ANIMATIONS - DISABLED
   ============================================ */

/* Fade-in animations disabled for section stability */

/* ============================================
   ACCESSIBILITY
   ============================================ */

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

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 3px solid var(--sacred-gold);
    outline-offset: 3px;
}
/* ============================================
   LEADER SECTION (Mario Raúl Frontera)
   ============================================ */

.leader-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(184, 115, 51, 0.03) 100%);
    margin-top: 4rem;
}

.leader-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.leader-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}

.leader-image {
    position: sticky;
    top: 120px;
}

.image-frame-leader {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(42, 24, 16, 0.3);
}

.image-frame-leader img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-ornament {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ornament-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--sacred-gold);
}

.ornament-corner.top-left {
    top: 1rem;
    left: 1rem;
    border-right: none;
    border-bottom: none;
}

.ornament-corner.top-right {
    top: 1rem;
    right: 1rem;
    border-left: none;
    border-bottom: none;
}

.ornament-corner.bottom-left {
    bottom: 1rem;
    left: 1rem;
    border-right: none;
    border-top: none;
}

.ornament-corner.bottom-right {
    bottom: 1rem;
    right: 1rem;
    border-left: none;
    border-top: none;
}

.leader-role {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--sacred-gold) 0%, var(--sacred-copper) 100%);
    border-radius: 50px;
    color: var(--earth-dark);
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1rem;
}

.leader-role i {
    font-size: 1.2rem;
}

.leader-content {
    padding: 2rem 0;
}

.leader-text {
    font-family: var(--font-body);
    color: var(--earth-dark);
}

.leader-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #f8f5f0;
}

.leader-intro strong {
    color: var(--sacred-gold);
    font-weight: 600;
}

.leader-description {
    margin-bottom: 2.5rem;
}

.leader-description p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #f8f5f0;
}

.leader-description strong {
    color: var(--earth-brown);
    font-weight: 600;
}

.leader-achievements {
    background: rgba(212, 175, 55, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid var(--sacred-gold);
    margin-bottom: 2.5rem;
}

.leader-achievements h4 {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--sacred-gold);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.leader-achievements h4 i {
    font-size: 1.3rem;
}

.leader-achievements ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.leader-achievements li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.leader-achievements li > i {
    font-size: 1.5rem;
    color: var(--sacred-gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.leader-achievements li > div {
    flex: 1;
}

.leader-achievements strong {
    display: block;
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--sacred-gold);
    margin-bottom: 0.5rem;
}

.leader-achievements span {
    font-size: 1rem;
    line-height: 1.7;
    color: #f8f5f0;
}

.leader-quote {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 115, 51, 0.1) 100%);
    border-radius: 16px;
    position: relative;
}

.leader-quote i {
    color: var(--sacred-gold);
    font-size: 2rem;
    opacity: 0.3;
}

.leader-quote p {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--sacred-gold);
    margin: 1.5rem 0;
}

/* ============================================
   PORTFOLIO CTA SECTION
   ============================================ */

.portfolio-cta {
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(184, 115, 51, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.portfolio-cta h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--sacred-gold);
    margin-bottom: 1rem;
}

.portfolio-cta p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--earth-medium);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--sacred-gold) 0%, var(--sacred-copper) 100%);
    color: var(--earth-dark);
    text-decoration: none;
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.portfolio-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    border-color: var(--sacred-gold);
    background: var(--earth-dark);
    color: var(--sacred-gold);
}

.portfolio-btn i:last-child {
    transition: transform 0.3s ease;
}

.portfolio-btn:hover i:last-child {
    transform: translateX(5px);
}

/* ============================================
   SECTION DESCRIPTION
   ============================================ */

.section-description {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--earth-medium);
}

/* ============================================
   RESPONSIVE - LEADER SECTION
   ============================================ */

@media (max-width: 1024px) {
    .leader-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .leader-image {
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .leader-achievements {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .leader-section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .leader-achievements h4 {
        font-size: 1.3rem;
    }
    
    .leader-achievements li {
        flex-direction: column;
        gap: 1rem;
    }
    
    .leader-intro {
        font-size: 1.15rem;
    }
    
    .leader-description p {
        font-size: 1rem;
    }
    
    .leader-quote p {
        font-size: 1.2rem;
    }
    
    .portfolio-cta h3 {
        font-size: 1.6rem;
    }
    
    .portfolio-cta p {
        font-size: 1rem;
    }
    
    .portfolio-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .leader-role {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .leader-achievements {
        padding: 1.5rem;
    }
    
    .leader-quote {
        padding: 1.5rem;
    }
    
    .leader-quote p {
        font-size: 1.1rem;
    }
    
    .ornament-corner {
        width: 30px;
        height: 30px;
        border-width: 2px;
    }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS - SIMPLE & ELEGANT
   ============================================ */

/* Estado inicial: invisible y ligeramente abajo */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

/* Estado visible: completamente visible y en posición normal */
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Optimización para dispositivos con preferencias de accesibilidad */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        transition: none;
        opacity: 1;
        transform: none;
    }
}


/* ============================================
   SECCIÓN ESPECIAL - CEREMONIA DE UNIÓN
   ============================================ */

.featured-ceremony-section {
    margin: 5rem 0;
    padding: 0;
}

.featured-badge-top {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: var(--sacred-gold);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.featured-badge-top i {
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.featured-ceremony-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
    border: 3px solid var(--sacred-gold);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.3),
        0 0 40px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
}

.featured-ceremony-container::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--sacred-gold), var(--sacred-copper), var(--sacred-gold));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
    animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.3;
        filter: blur(10px);
    }
    50% {
        opacity: 0.5;
        filter: blur(15px);
    }
}

.featured-ceremony-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(42, 24, 16, 0.3);
    height: fit-content;
}

.featured-ceremony-image video {
    width: 100%;
    height: auto;
    display: block;
    min-height: 500px;
    object-fit: cover;
}

.featured-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(42, 24, 16, 0.3) 0%,
        rgba(212, 175, 55, 0.15) 100%
    );
    pointer-events: none;
}

.featured-ceremony-content {
    padding: 1rem 0;
}

.featured-ceremony-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    background: var(--gradient-sacred);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.featured-ceremony-intro {
    margin-bottom: 2rem;
}

.featured-ceremony-intro p {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--earth-brown);
}

.featured-ceremony-intro strong {
    color: var(--sacred-copper);
    font-weight: 600;
}

.featured-ceremony-description {
    margin-bottom: 2.5rem;
}

.featured-ceremony-description p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--earth-medium);
    margin-bottom: 1.5rem;
}

.featured-ceremony-description strong {
    color: var(--earth-brown);
    font-weight: 600;
}

.featured-ceremony-closing {
    font-style: italic;
    color: var(--sacred-copper) !important;
    margin-top: 2rem !important;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.08);
    border-left: 4px solid var(--sacred-gold);
    border-radius: 8px;
}

.featured-ceremony-elements {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 115, 51, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.featured-ceremony-elements h4 {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    color: var(--sacred-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.elements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.element-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.element-item:hover {
    background: var(--sacred-gold);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.element-item i {
    font-size: 1.5rem;
    color: var(--sacred-copper);
    transition: all 0.3s ease;
}

.element-item:hover i {
    color: white;
    transform: scale(1.1);
}

.element-item span {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--earth-brown);
    font-weight: 500;
    transition: all 0.3s ease;
}

.element-item:hover span {
    color: white;
}

/* Separador entre secciones */
.ceremonies-divider {
    margin: 5rem 0 4rem;
    text-align: center;
}

.divider-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.ornament-text {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--earth-medium);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0 2rem;
}

/* ============================================
   RESPONSIVE - SECCIÓN ESPECIAL
   ============================================ */

@media (max-width: 1024px) {
    .featured-ceremony-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }
    
    .featured-ceremony-image img {
        min-height: 400px;
    }
    
    .featured-ceremony-title {
        font-size: 2.3rem;
    }
    
    .elements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .featured-badge-top {
        font-size: 1.2rem;
        gap: 1rem;
    }
    
    .featured-ceremony-container {
        padding: 2rem;
        gap: 2.5rem;
    }
    
    .featured-ceremony-image img {
        min-height: 300px;
    }
    
    .featured-ceremony-title {
        font-size: 2rem;
    }
    
    .featured-ceremony-intro p {
        font-size: 1.15rem;
    }
    
    .featured-ceremony-description p {
        font-size: 1.05rem;
    }
    
    .featured-ceremony-elements {
        padding: 1.5rem;
    }
    
    .element-item {
        padding: 0.9rem 1.2rem;
    }
    
    .element-item span {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .featured-badge-top {
        font-size: 1rem;
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    
    .featured-ceremony-section {
        margin: 3rem 0;
    }
    
    .featured-ceremony-container {
        padding: 1.5rem;
        gap: 2rem;
    }
    
    .featured-ceremony-image img {
        min-height: 250px;
    }
    
    .featured-ceremony-title {
        font-size: 1.7rem;
    }
    
    .featured-ceremony-intro p {
        font-size: 1.05rem;
    }
    
    .featured-ceremony-description p {
        font-size: 1rem;
    }
    
    .featured-ceremony-elements {
        padding: 1.2rem;
    }
    
    .featured-ceremony-elements h4 {
        font-size: 1.2rem;
    }
    
    .element-item {
        padding: 0.8rem 1rem;
    }
    
    .element-item i {
        font-size: 1.3rem;
    }
    
    .element-item span {
        font-size: 0.9rem;
    }
    
    .ceremonies-divider {
        margin: 3rem 0 2.5rem;
    }
    
    .ornament-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
}