/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 30 2025 | 15:32:15 */
/* CSS Reset and Global Styles */
:root {
    --brand-purple-dark: #6D28D9;
    --brand-purple: #8B5CF6;
    --brand-purple-light: #A855F7;
    --brand-purple-bg: #F5F3FF;
    --brand-teal: #14F195;
    --brand-dark-blue: #272751;
    --brand-button-blue: #4F46E5;
    --light-bg: #F9FAFB;
    --light-bg-alt: #F7F7FD;
    --white: #ffffff;
    --text-dark: #1F2937;
    --text-light: #F3F4F6;
    --text-muted: #6B7280;
    --border-color: #E5E7EB;
    --progress-bar-bg: #E8E8FB;
    --star-color: #facc15;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Geologica', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--brand-dark-blue);
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 1rem 0 3rem;
    line-height: 1.6;
}

.text-center {
    text-align: center;
}

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--brand-purple-dark);
    color: var(--white);
}

.btn-primary-dark {
     background-color: var(--brand-button-blue);
     color: var(--white) !important;
}

.btn-accent {
    background-color: var(--brand-teal);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-accent-dark {
    background: var(--brand-teal);
    color: var(--brand-dark-blue);
    padding: 1rem 2.5rem;
    font-weight: 700;
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
}
.arrow-link:hover {
    background-color: var(--brand-purple-dark);
    color: var(--white);
    border-color: var(--brand-purple-dark);
}

.link-cta {
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s;
}
.link-cta:hover { color: var(--brand-purple); }

@media (max-width: 1200px) {
    .container { max-width: 960px; }
}

@media (max-width: 992px) {
    .container { max-width: 720px; }
    .section { padding: 4rem 0; }
}

@media (max-width: 576px) {
    .container { padding: 0 1rem; }
}

.franja-logos {
	display: flex; /* Usa Flexbox para alinear los logos */
	justify-content: space-around; /* Distribuye el espacio uniformemente */
	align-items: center; /* Centra los logos verticalmente */
	background-color: #fff; /* Color de fondo de la franja */
	padding: 5px 10px; /* Espaciado interno (arriba/abajo y a los lados) */
	
}

/* Estilos para cada logo individual */
.logo-img {
	width: 100px; /* Ancho máximo para cada logo */
	height: auto; /* La altura se ajusta automáticamente para mantener la proporción */
	margin: 0 15px; /* Margen horizontal entre los logos */
	
}


/*----  HERO CSS ------- */


/* Hero Section */
.hero-section {
    padding-top: 10rem;
    padding-bottom: 8rem;
    position: relative;
    overflow: hidden;
    text-align: center;
	top: -30px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    width: 2200px;
    height: 1200px;
    background: url('https://sorteoseguro.cl/wp-content/uploads/2025/07/bg-home-sorteo-seguro.png') no-repeat center top / contain;
    transform: translateX(-50%);
    z-index: -1;
}

.hero-section .container {
    position: relative;
}

.social-links {
    position: absolute;
    left: -4rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 10;
}
.social-links a {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: color 0.2s;
}
.social-links a:hover { color: var(--brand-purple); }

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4.2rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #272751;
}

.hero-content .hero-subheading {
    font-size: 1.25rem;
    color: #272751;
    max-width: 550px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 6rem;
}

.hero-bottom-text {
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 0.8rem;
    text-transform: uppercase;
}
.hero-bottom-text span {
    margin: 0 0.5rem;
}

.satisfaction-badge {
    position: absolute;
    right: 0;
    top: 9rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.satisfaction-badge img {
    width: 120px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}
.satisfaction-badge p {
    font-size: 0.9rem;
    margin-top: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.4;
}
.stars { color: var(--star-color); }

@media (max-width: 1200px) {
    .hero-section h1 { font-size: 3.5rem; }
    .satisfaction-badge, .social-links { display: none; }
}

@media (max-width: 992px) {
    .hero-section { padding-top: 8rem; padding-bottom: 4rem; }
}

@media (max-width: 768px) {
    .hero-section h1 { font-size: 2.8rem; }
    .hero-actions { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 576px) {
    .hero-section h1 { font-size: 2.2rem; }
}


/* ----- FIN HERO CSS ------*/

/* ----- Raffles CSS ------*/

/* Raffles Section */
.raffles-section {
    padding-top: 0;
}

.featured-raffles-grid {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 3rem;
    align-items: stretch;
}

.featured-raffles-info {
    display: flex;
    flex-direction: column;
}

.featured-raffles-info .section-title {
    text-align: left;
    font-size: 40px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.view-all-raffles {
    font-weight: 600;
    color: var(--brand-dark-blue);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s;
}
.view-all-raffles:hover { color: var(--brand-button-blue); }

.sernac-info {
    margin-top: auto;
}

.sernac-logo {
    height: 25px !important;
    width: auto !important;
    margin-bottom: 0.75rem;
    max-width: 100px !important;
}

.sernac-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 220px;
    line-height: 1.4;
}

.raffles-section .container{
	max-width: 100%;
    margin: 0 4%;
    padding: 0 18px;
}

.img-proximamente{
	width: 45% !important;
    height: 40% !important;
    object-fit: contain !important;
}


.raffles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.raffle-card {
    background-color: var(--white);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(222, 222, 243, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #F0F0F9;
	position: relative;
	align-items: center;
}
.raffle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(200, 200, 227, 0.7);
}

.raffle-card.highlighted {
    background-color: var(--light-bg-alt);
    border: 1px solid var(--border-color);
}

.raffle-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.raffle-content {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.raffle-info {
    display: flex;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}
.raffle-info span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.raffle-info i {
    font-size: 1.1rem;
    position: relative;
    top: -1px;
}

.raffle-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-dark-blue);
    line-height: 1.3;
    margin-bottom: 0.5rem;
    min-height: 45px;
}

.raffle-description {
    color: var(--text-muted);
    flex-grow: 1;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
	max-height: 40px;
    overflow: hidden;
}

.raffle-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.raffle-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-dark-blue);
}
.raffle-price span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

.raffle-add-btn {
    background-color: var(--brand-button-blue);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    transition: background-color 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.raffle-add-btn:hover {
    background-color: var(--brand-purple-dark);
    transform: scale(1.05);
}

.raffle-progress {
    margin-top: auto;
}

.progress-info {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-dark-blue);
    margin-bottom: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: var(--progress-bar-bg);
    border-radius: 5px;
    position: relative;
}

.progress-bar div {
    height: 100%;
    background: var(--brand-button-blue);
    border-radius: 5px;
    position: relative;
}

.progress-bar div::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    width: 18px;
    height: 18px;
    background-color: var(--white);
    border: 4px solid var(--brand-button-blue);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 5%);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-proximamente {
    color: #4f46e5b5;
    font-size: 2.2rem;
    font-weight: bold;
    transform: rotate(-30deg);
    top: 49px;
    position: relative;
}

@media (max-width: 1200px) {
    .featured-raffles-grid { grid-template-columns: 240px 1fr; gap: 2rem; }
    .raffles-grid { gap: 1rem; }
}

@media (max-width: 992px) {
    .featured-raffles-grid { grid-template-columns: 1fr; text-align: center; }
    .featured-raffles-info { align-items: center; }
    .featured-raffles-info .section-title { text-align: center; }
    .view-all-raffles { margin-bottom: 2rem; }
    .sernac-info { display: none; }
    .raffles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .raffles-grid { grid-template-columns: 1fr; }
}


/* ----- FIN raffles CSS ------*/


/* ----- why-trust CSS ------*/


/* Why Trust Section */
.why-trust-section {
    background-color: var(--brand-purple-dark);
    color: var(--white);
    border-radius: 50px;
    margin: 0 4%;
    position: relative;
    z-index: 1;
	display:flex;
	justify-content:center;
}
.why-trust-section .section-title, .why-trust-section .section-subtitle {
    color: var(--white);
}
.why-trust-section .section-subtitle {
    opacity: 0.8;
}

.why-trust-section .container{
	margin: 0 4%;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: left;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.trust-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    transition: background-color 0.3s;
}
.trust-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.trust-item i {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--brand-teal);
}
.trust-item h3 {
    font-size: 16px;
    margin-bottom: 0.75rem;
    font-weight: 700;
}
.trust-item p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .trust-grid { grid-template-columns: 1fr; }
    .why-trust-section { margin: 0; border-radius: 0; }
}


/* ----- FIN why-trust CSS ------*/



/* ----- winners CSS ------*/

/* Winners Section */
.winners-section {
    background-color: var(--white);
    position: relative;
/*     overflow: hidden; */
    padding: 6rem 0;
}
.winners-section::before {
    content: '';
    position: absolute;
    top: -100vh;
    right: -73%;
    width: 130%;
    height: 150%;
    background: url('https://sorteoseguro.cl/wp-content/uploads/2025/07/logo_sin_fondo.png') no-repeat;
    background-size: contain;
    opacity: 0.8;
    transform: rotate(-60deg);
    z-index: 0;
}
.winners-section .container {
    position: relative;
    z-index: 1;
	margin: auto 4%;
}

.winners-layout {
    display: grid;
    grid-template-columns: 38% 62%;
    align-items: center;
    gap: 3rem;
}

.winners-info .stars {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.winners-info .section-title {
    text-align: left;
    margin: 0;
    font-size: 50px;
    font-weight: 800;
    color: var(--brand-dark-blue);
    line-height: 1.2;
}
.winners-info .section-title span {
    color: var(--brand-purple);
}
.winners-info .section-subtitle {
    text-align: left;
    margin: 1.5rem 0;
    max-width: 500px;
    color: var(--brand-dark-blue);
    font-size: 18px;
    font-weight: 400;
}

.winners-story-prompt {
    color: var(--brand-dark-blue);
    margin-top: 1.5rem;
}

.winners-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.winners-cta .btn {
    border-radius: 999px;
}
.winners-cta .arrow-link {
    width: 48px;
    height: 48px;
    font-size: 1.9rem;
    color: var(--brand-button-blue);
    border-color: var(--brand-button-blue);
    background: var(--white);
    border-width: 1px;
	border: solid 1px;
}
.winners-cta .arrow-link:hover {
    background: var(--brand-button-blue);
    color: var(--white);
    border-color: var(--brand-button-blue);
}

.winners-testimonials {
    position: relative;
    height: 450px;
	display: flex;
	justify-content: center;

}

.winner-card {
    background: var(--white);
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
    position: relative;
    width: 380px;
    height: 339px;
    /* overflow: hidden; */
}
.winner-card::after {
    display: none;
}


.winner-card.marcelo-card {
    top: 130px;
    left: -25px;
    z-index: 1;
}

.winner-card.camila-card {
    top: 130px;
    right: 0;
    z-index: 2;
}

.winner-card-content {
    padding: 1.5rem;
    padding-bottom: 0;
    max-height: 235px;
}

.winner-card-header {
    display: flex;
    align-items: flex-end;
    margin-bottom: 1.5rem;
    top: -128px;
    position: relative;
    justify-content: center;
}
.winner-photo {
    width: 150px;
    height: 150px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    /* border: 4px solid var(--white); */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
    z-index: 1;
}
.prize-img {
    width: 110px;
    height: 110px !important;
    border-radius: 50% !important;
    object-fit: cover;
    /* border: 4px solid var(--white); */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
    margin-left: -30px;
    z-index: 2;
}
.winner-card-body { 
    flex-grow: 1; 
    top: -130px;
    position: relative;
}
.winner-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.winner-name {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--brand-dark-blue);
	margin: 0;
}
.winner-location {
    color: var(--brand-dark-blue);
    font-size: 11px;
    font-weight: 200;
}
.winner-date {
    color: var(--brand-dark-blue);
    font-size: 10px;
    display: flex;
    align-items: flex-end;
    gap: 0.2rem;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: flex-end;
}
.winner-date .bx{
	font-size: 20px;
}
.winner-quote {
    font-size: 16px;
    line-height: 1.6;
    color: var(--brand-dark-blue);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.winner-card-footer {
    background: linear-gradient(90deg, var(--brand-purple), var(--brand-purple-dark));
    color: var(--white);
    padding: 1rem 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-top: auto;
    font-size: 0.95rem;
    border-bottom-left-radius: 1.1rem;
    border-bottom-right-radius: 1.1rem;
}
.winner-card-footer i {
    font-size: 1.2rem;
}

@media (max-width: 1200px) {
    .winners-layout { grid-template-columns: 1fr; text-align: center; gap: 1rem; }
    .winners-info { display: flex; flex-direction: column; align-items: center; padding-right: 0;}
    .winners-info .section-title, .winners-info .section-subtitle { text-align: center; }
    .winners-testimonials { margin-top: 4rem; height: auto; display: flex; flex-direction: column; gap: 2rem; align-items: center; }
    .winner-card { position: relative; width: 100%; max-width: 400px; margin: 0 auto; top: auto !important; left: auto !important; right: auto !important; }
}

@media (max-width: 768px) {
    .winners-section::before { display: none; }
}

/* ----- FIN winners CSS ------*/



/* ----- how-it-works CSS ------*/


/* How it Works Section */
.how-it-works-section {
    background-color: var(--white);
	display: flex;
	justify-content: center;
}
.how-it-works-header { text-align: center; }
.how-it-works-header .tagline {
    font-weight: 400;
    color: var(--brand-dark-blue);
    margin-bottom: 1rem;
	font-size: 14px;
}
.how-it-works-section .container {
	margin: auto 4%;
}
.how-it-works-header .section-title {
    margin-bottom: 4rem;
    color: var(--brand-dark-blue);
    line-height: 1.3;
	font-size: 30px;
	font-weight: 400;

}

.colaboraciones{margin-bottom: 2rem;}

.colaboracion { text-align: center; }

.colaboracion .section-title {
    margin-bottom: 0.5rem;
    color: var(--brand-dark-blue);
    line-height: 1.3;
	font-size: 30px;
	font-weight: 400;

}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}
.how-step {
    border-left: none;
    display: flex;
    flex-direction: column;
}

.how-step:nth-child(2),
.how-step:nth-child(3) {
    position: relative;
    padding-left: 2rem;
}

.how-step:nth-child(2)::before,
.how-step:nth-child(3)::before {
    content: '';
    position: absolute;
    left: 0;
    top: -1rem;
    width: 5px;
    height: 120%;
    background: linear-gradient(to bottom, var(--brand-purple), transparent);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.how-step .step-number {
    color: var(--brand-purple);
    font-weight: 200;
    font-size: 14px;
    margin-bottom: 1rem;
}
.how-step h3 {
    font-size: 22px;
    margin-bottom: 1rem;
    color: var(--brand-dark-blue);
    text-align: left;
    line-height: 1.3;
}
.how-step ul {
    list-style-type: none;
    padding-left: 0;
    flex-grow: 1;
}
.how-step li {
    color: var(--brand-dark-blue);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
	font-size: 14px;
    font-weight: 400;
}
.how-step li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--brand-purple);
    font-weight: 700;
}

.how-it-works-cta {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.how-it-works-cta .btn-primary {
    background-color: var(--brand-purple);
}
.how-it-works-cta .arrow-link {
    width: 48px;
    height: 48px;
    border-width: 2px;
    border-color: #DDD6FE;
    color: var(--brand-purple);
}
.how-it-works-cta .arrow-link:hover {
    background-color: var(--brand-purple);
    border-color: var(--brand-purple);
    color: var(--white);
}

@media (max-width: 992px) {
    .how-it-works-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .how-step:nth-child(2), .how-step:nth-child(3) { padding-left: 0; }
    .how-step:nth-child(2)::before, .how-step:nth-child(3)::before { display: none; }
}


/* ----- FIN how-it-works CSS ------*/



/* ----- faq CSS ------*/


/* FAQ Section */
.faq-section {
    background-color: var(--brand-purple-dark);
    color: var(--white);
    border-radius: 50px;
    margin: 0 4%;
}
.faq-section .container {
	padding-left: 100px;
    padding-right: 100px;
}
.faq-section .section-title, .faq-section .section-subtitle {
    color: var(--white);
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}
.faq-section .section-subtitle { 
	font-size: 18px;
    font-weight: 200;
}
.faq-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: flex-start;
}
.faq-info .section-title {
    font-size: 50px;
}
.faq-contact {
    margin-top: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.faq-contact a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 700;
}
.faq-contact a i { vertical-align: middle; }

.faq-item {
    background-color: transparent;
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s;
    text-align: left;
}
.faq-item:first-child {
    border-top: 1px solid rgba(255,255,255,0.2);
}

.faq-item:hover {
    background-color: rgba(255,255,255,0.05);
}
.faq-item-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    transition: background-color 0.2s, transform 0.2s;
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item:hover .faq-item-arrow {
    background-color: var(--brand-purple);
    transform: rotate(45deg);
}

@media (max-width: 1200px) {
    .faq-content { gap: 3rem; }
}

@media (max-width: 992px) {
    .faq-content { grid-template-columns: 1fr; }
    .faq-info { text-align: center; }
    .faq-info .section-title, .faq-info .section-subtitle { text-align: center; margin-left: auto; margin-right: auto;}
}

@media (max-width: 768px) {
    .faq-section { margin: 0; border-radius: 0; }
	.faq-section .container {
		padding: 0px;
	}
}


/* ----- FIN faq CSS ------*/

body.woocommerce-checkout .lty-lottery-ticket-pdf-download {
    display: none !important;
}