/* Responsive: Stack image below text in invite steps on small screens */
@media (max-width: 991.98px) {
    /* For each invite step row, stack columns vertically and put image after text */
    .invite-step-row {
        flex-direction: column-reverse !important;
    }
    .invite-step-row > .col-lg-5,
    .invite-step-row > .col-lg-7 {
        max-width: 100%;
        flex: 0 0 100%;
    }
}
/*
 * priza.css - Estilos customizados extraídos de index.html
 */
:root {
    --primary-color: #30003d;
    --primary-contrast: #ffffff;
    --secondary-color: #735378;
    --secondary-contrast: #ffffff;
    --accent-color: #e1ad00;
    --success-color: #006005;
    --success-contrast: #d3ffd9;
    --error-color: #9a0a00;
    --error-contrast: #ffd3d3;
    --info-color: #003561;
    --info-contrast: #a6d7ff;
    --text-dark: #30003d;
    --text-light: #735378;
    --bg-light: #f7eaf3;
    --bg-default: #f7eaf3;
    /* dark mode disabled */
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-default);
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23pattern)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-contrast);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-primary-custom {
    background: linear-gradient(90deg, var(--primary-contrast), var(--primary-contrast));
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: var(--primary-color);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: var(--primary-color);
    background: linear-gradient(90deg, var(--primary-contrast), var(--primary-contrast));
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid var(--primary-contrast);
    color: var(--primary-contrast);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-custom:hover {
    background: var(--primary-contrast);
    color: var(--primary-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
    background: var(--primary-color) !important;
    color: var(--primary-contrast) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar>.container {
    height: 46px;
    margin-top: 10px;
}

.navbar.scrolled {
    background: var(--primary-color) !important;
    backdrop-filter: none;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-contrast) !important;
}


.navbar.scrolled .navbar-brand {
    color: var(--primary-contrast) !important;
}

.navbar-nav .nav-link {
    font-size: 1rem;
    margin-left: 1.5rem;
    color: var(--primary-contrast) !important;
    transition: color 0.3s ease;
}


.navbar.scrolled .nav-link {
    color: var(--primary-contrast) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-light {
    background: var(--bg-light) !important;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-light);
}

.feature-card {
    background: var(--primary-contrast);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    height: 100%;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-contrast);
}

.feature-icon.photos {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.feature-icon.communication {
    background: linear-gradient(45deg, var(--info-color), var(--success-color));
    color: var(--primary-contrast);
}

.feature-icon.integration {
    background: linear-gradient(45deg, var(--error-color), var(--accent-color));
    color: var(--primary-contrast);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--primary-contrast);
}

.about-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--primary-contrast);
}

.stat-item {
    text-align: center;
    margin-bottom: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--primary-contrast);
    text-align: center;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--primary-contrast);
    padding: 60px 0 30px;
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer a {
    color: var(--secondary-contrast);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 12px 25px;
        font-size: 1rem;
        margin: 5px;
    }
}

.related-items {
    background: var(--primary-contrast);
    overflow: hidden;
}
.related-item {
    background: var(--primary-contrast);
    overflow: hidden;
}

/* FAQ Accordion */
.accordion-item {
    background: var(--primary-contrast);
    overflow: hidden;
}

.accordion-button {
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    color: var(--text-dark);
    background: var(--primary-contrast);
}

.accordion-button-white {
    background: var(--primary-color) !important;
    color: rgb(195, 195, 195) !important;
}

.accordion-desc-white {
    color: rgb(195, 195, 195) !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: var(--primary-contrast);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2330003d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button-white::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cccccc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2330003d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button-white:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cccccc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
    padding: 0 1.5rem 1.25rem;
    line-height: 1.8;
}

.accordion-body a {
    color: var(--primary-color);
    font-weight: 500;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}
