SECCIÓN: Hero
──────────────────────────── */
.sol-hero {
background: linear-gradient(135deg, #0E1D13 0%, #16291D 60%, #1E3828 100%);
padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 3rem);
position: relative;
overflow: hidden;
}
.sol-hero::before {
content: »;
position: absolute;
inset: 0;
background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(147,241,201,.08) 0%, transparent 70%);
pointer-events: none;
}
.sol-hero-inner {
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
@media (max-width: 768px) {
.sol-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
.sol-hero-badge {
display: inline-flex;
align-items: center;
gap: .5rem;
background: rgba(147,241,201,.12);
border: 1px solid rgba(147,241,201,.3);
color: var(–rep-green);
border-radius: 999px;
padding: .35rem 1rem;
font-size: .8rem;
font-weight: 600;
letter-spacing: .04em;
text-transform: uppercase;
margin-bottom: 1.5rem;
}
.sol-hero h1 {
font-size: clamp(2rem, 4vw, 3rem) !important;
color: #fff !important;
margin-bottom: 1.2rem !important;
}
.sol-hero h1 em {
color: var(–rep-green);
font-style: normal;
}
.sol-hero-tagline {
color: rgba(255,255,255,.75);
font-size: 1.1rem;
max-width: 520px;
margin-bottom: 2rem;
}
.sol-audience-row {
display: flex;
flex-wrap: wrap;
gap: .6rem;
margin-bottom: 2.5rem;
}
.sol-audience-chip {
display: inline-flex;
align-items: center;
gap: .4rem;
background: rgba(255,255,255,.08);
border: 1px solid rgba(255,255,255,.14);
border-radius: 999px;
padding: .3rem .9rem;
font-size: .82rem;
color: rgba(255,255,255,.85);
}
.sol-hero-ctas {
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
.sol-btn-primary {
display: inline-flex;
align-items: center;
gap: .5rem;
background: var(–rep-green);
color: var(–rep-forest) !important;
font-weight: 700;
font-size: .95rem;
padding: .85rem 2rem;
border-radius: 999px;
text-decoration: none !important;
transition: transform .2s, box-shadow .2s;
}
.sol-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(147,241,201,.35); }
.sol-btn-outline {
display: inline-flex;
align-items: center;
gap: .5rem;
background: transparent;
border: 2px solid rgba(255,255,255,.25);
color: #fff !important;
font-weight: 600;
font-size: .95rem;
padding: .85rem 1.8rem;
border-radius: 999px;
text-decoration: none !important;
transition: border-color .2s, background .2s;
}
.sol-btn-outline:hover { border-color: var(–rep-green); background: rgba(147,241,201,.08); }
/* Tarjeta descuento heroína — Aurora Card */
.sol-hero-right {
position: relative;
perspective: 800px;
}
/* ── Floating solidarity particles ── */
.sol-particles {
position: absolute;
inset: -20px;
pointer-events: none;
z-index: 0;
}
.sol-particle {
position: absolute;
left: var(–x);
top: var(–y);
font-size: 1.1rem;
color: rgba(147,241,201,.3);
opacity: 0;
animation: sol-drift 7s ease-in-out infinite;
animation-delay: calc(var(–d) * 1.2s);
}
@keyframes sol-drift {
0% { opacity: 0; transform: translateY(0) scale(.7); }
15% { opacity: .6; }
50% { opacity: .45; transform: translateY(-28px) scale(1); }
85% { opacity: .15; }
100% { opacity: 0; transform: translateY(-56px) scale(.7); }
}
/* ── Aurora animated border ── */
.sol-aurora-wrap {
position: relative;
z-index: 1;
border-radius: 22px;
transform-style: preserve-3d;
transition: transform .4s ease;
}
.sol-aurora-wrap:hover {
transform: rotateX(2deg) rotateY(-2deg) translateY(-4px);
}
.sol-aurora-border {
content: »;
position: absolute;
inset: -2px;
border-radius: 22px;
background: conic-gradient(
from var(–sol-angle, 0deg),
rgba(147,241,201,.5),
rgba(65,153,159,.4),
rgba(247,212,80,.25),
rgba(147,241,201,.15),
rgba(65,153,159,.5),
rgba(147,241,201,.5)
);
animation: sol-aurora-spin 6s linear infinite;
filter: blur(1px);
z-index: -1;
}
@property –sol-angle {
syntax: »;
initial-value: 0deg;
inherits: false;
}
@keyframes sol-aurora-spin {
to { –sol-angle: 360deg; }
}
/* Fallback for browsers without @property */
@supports not (background: conic-gradient(from 0deg, red, red)) {
.sol-aurora-border {
background: linear-gradient(135deg,
rgba(147,241,201,.4),
rgba(65,153,159,.3),
rgba(247,212,80,.2),
rgba(147,241,201,.4));
animation: sol-aurora-fallback 4s ease-in-out infinite alternate;
}
@keyframes sol-aurora-fallback {
from { opacity: .5; }
to { opacity: .9; }
}
}
/* Glow behind the card */
.sol-aurora-wrap::before {
content: »;
position: absolute;
inset: -12px;
border-radius: 28px;
background: radial-gradient(ellipse at 50% 0%, rgba(147,241,201,.12) 0%, transparent 60%);
filter: blur(20px);
z-index: -2;
animation: sol-card-breathe 4s ease-in-out infinite;
}
@keyframes sol-card-breathe {
0%, 100% { opacity: .5; transform: scale(1); }
50% { opacity: .9; transform: scale(1.04); }
}
.sol-hero-card {
position: relative;
background: rgba(255,255,255,.06);
border-radius: 20px;
padding: 2.2rem;
backdrop-filter: blur(14px);
overflow: hidden;
}
/* Shimmer sweep across card */
.sol-hero-card::after {
content: »;
position: absolute;
top: 0; left: -100%;
width: 50%; height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,.04), transparent);
animation: sol-shimmer 5s ease-in-out infinite;
}
@keyframes sol-shimmer {
0%, 100% { left: -100%; }
50% { left: 150%; }
}
/* ── Discount badge pulse ── */
.sol-discount-badge {
display: inline-flex;
align-items: center;
gap: .5rem;
background: var(–rep-green);
color: var(–rep-forest);
font-weight: 800;
font-size: 1.1rem;
border-radius: 12px;
padding: .6rem 1.2rem;
margin-bottom: 1.5rem;
animation: sol-badge-pulse 3s ease-in-out infinite;
position: relative;
}
.sol-discount-badge::before {
content: »;
position: absolute;
inset: -4px;
border-radius: 16px;
background: var(–rep-green);
opacity: 0;
z-index: -1;
animation: sol-badge-ring 3s ease-in-out infinite;
}
@keyframes sol-badge-pulse {
0%, 100% { box-shadow: 0 0 0 0 rgba(147,241,201,.3); }
50% { box-shadow: 0 4px 20px rgba(147,241,201,.35); }
}
@keyframes sol-badge-ring {
0%, 100% { opacity: 0; transform: scale(1); }
50% { opacity: .18; transform: scale(1.08); }
}
.sol-hero-card h3 {
color: #fff !important;
font-size: 1.15rem !important;
margin-bottom: 1rem !important;
}
/* ── Criteria list staggered animation ── */
.sol-criteria-list {
list-style: none;
display: flex;
flex-direction: column;
gap: .7rem;
}
.sol-criteria-list li {
display: flex;
align-items: flex-start;
gap: .75rem;
color: rgba(255,255,255,.8);
font-size: .9rem;
opacity: 0;
transform: translateX(20px);
animation: sol-check-in .5s ease forwards;
}
.sol-criteria-list li:nth-child(1) { animation-delay: .3s; }
.sol-criteria-list li:nth-child(2) { animation-delay: .5s; }
.sol-criteria-list li:nth-child(3) { animation-delay: .7s; }
.sol-criteria-list li:nth-child(4) { animation-delay: .9s; }
.sol-criteria-list li:nth-child(5) { animation-delay: 1.1s; }
@keyframes sol-check-in {
to { opacity: 1; transform: translateX(0); }
}
.sol-criteria-list li i {
color: var(–rep-green);
font-size: 1.1rem;
margin-top: .05rem;
flex-shrink: 0;
opacity: 0;
transform: scale(0);
animation: sol-check-pop .35s ease forwards;
}
.sol-criteria-list li:nth-child(1) i { animation-delay: .55s; }
.sol-criteria-list li:nth-child(2) i { animation-delay: .75s; }
.sol-criteria-list li:nth-child(3) i { animation-delay: .95s; }
.sol-criteria-list li:nth-child(4) i { animation-delay: 1.15s; }
.sol-criteria-list li:nth-child(5) i { animation-delay: 1.35s; }
@keyframes sol-check-pop {
0% { opacity: 0; transform: scale(0) rotate(-20deg); }
60% { transform: scale(1.3) rotate(5deg); }
100% { opacity: 1; transform: scale(1) rotate(0); }
}
/* ── Card footer with impact counter ── */
.sol-hero-card-footer {
margin-top: 1.5rem;
padding-top: 1.2rem;
border-top: 1px solid rgba(255,255,255,.1);
}
.sol-impact-counter {
display: flex;
align-items: baseline;
gap: .5rem;
margin-bottom: .6rem;
}
.sol-counter-num {
font-family: ‘Sora’, sans-serif;
font-size: 1.8rem;
font-weight: 800;
color: var(–rep-green);
line-height: 1;
}
.sol-counter-label {
font-size: .82rem;
color: rgba(255,255,255,.6);
}
.sol-hero-card-note {
color: rgba(255,255,255,.55);
font-size: .78rem;
margin: 0;
}
/* ────────────────────────────
SECCIÓN: Beneficios
──────────────────────────── */
.sol-benefits {
background: #fff;
padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 3rem);
}
.sol-benefits-inner {
max-width: 1100px;
margin: 0 auto;
}
.sol-section-header {
text-align: center;
margin-bottom: 3rem;
}
.sol-section-eyebrow {
display: inline-block;
color: var(–rep-teal);
font-weight: 700;
font-size: .78rem;
letter-spacing: .12em;
text-transform: uppercase;
margin-bottom: .8rem;
}
.sol-section-header h2 {
font-size: clamp(1.7rem, 3vw, 2.3rem) !important;
color: var(–rep-forest) !important;
margin-bottom: .8rem !important;
}
.sol-section-header p {
color: var(–rep-muted);
max-width: 560px;
margin: 0 auto;
font-size: 1rem;
}
.sol-benefits-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.8rem;
}
@media (max-width: 768px) {
.sol-benefits-grid { grid-template-columns: 1fr; }
}
.sol-benefit-card {
background: var(–rep-bg-light);
border-radius: 16px;
padding: 2rem;
transition: transform .25s, box-shadow .25s;
}
.sol-benefit-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(30,47,35,.1); }
.sol-benefit-icon {
width: 56px;
height: 56px;
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
margin-bottom: 1.2rem;
}
.sol-benefit-icon.green { background: rgba(147,241,201,.18); color: #2ecc71; }
.sol-benefit-icon.teal { background: rgba(65,153,159,.14); color: var(–rep-teal); }
.sol-benefit-icon.sun { background: rgba(247,212,80,.18); color: #c89b00; }
.sol-benefit-card h3 {
color: var(–rep-forest) !important;
font-size: 1.1rem !important;
margin-bottom: .6rem !important;
}
.sol-benefit-card p {
color: var(–rep-muted);
font-size: .92rem;
}
/* ────────────────────────────
SECCIÓN: Elegibilidad
──────────────────────────── */
.sol-eligibility {
background: var(–rep-bg-light);
padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 3rem);
}
.sol-eligibility-inner {
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
@media (max-width: 768px) {
.sol-eligibility-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
.sol-eligibility h2 {
font-size: clamp(1.6rem, 2.8vw, 2.1rem) !important;
color: var(–rep-forest) !important;
margin-bottom: 1rem !important;
}
.sol-eligibility > .sol-eligibility-inner > div > p {
color: var(–rep-muted);
margin-bottom: 1.8rem;
}
.sol-check-list {
list-style: none;
display: flex;
flex-direction: column;
gap: .9rem;
}
.sol-check-list li {
display: flex;
align-items: flex-start;
gap: .8rem;
font-size: .95rem;
color: var(–rep-text);
}
.sol-check-list li i {
font-size: 1.15rem;
color: var(–rep-teal);
flex-shrink: 0;
margin-top: .1rem;
}
.sol-elig-visual {
background: linear-gradient(135deg, var(–rep-forest) 0%, #254030 100%);
border-radius: 20px;
padding: 2.5rem;
text-align: center;
}
.sol-elig-visual h3 {
color: #fff !important;
font-size: 1.2rem !important;
margin-bottom: .5rem !important;
}
.sol-elig-visual p {
color: rgba(255,255,255,.65);
font-size: .9rem;
margin-bottom: 2rem;
}
.sol-discount-number {
font-family: ‘Sora’, sans-serif;
font-size: 5rem;
font-weight: 900;
color: var(–rep-green);
line-height: 1;
margin-bottom: .25rem;
}
.sol-discount-label {
color: rgba(255,255,255,.7);
font-size: .95rem;
margin-bottom: 1.8rem;
}
.sol-process-steps {
display: flex;
flex-direction: column;
gap: .9rem;
text-align: left;
}
.sol-process-step {
display: flex;
align-items: center;
gap: 1rem;
color: rgba(255,255,255,.8);
font-size: .88rem;
}
.sol-step-num {
width: 28px;
height: 28px;
border-radius: 50%;
background: rgba(147,241,201,.2);
border: 1px solid rgba(147,241,201,.4);
color: var(–rep-green);
font-weight: 700;
font-size: .77rem;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
/* ────────────────────────────
SECCIÓN: 6 Pilares
──────────────────────────── */
.sol-pillars {
background: linear-gradient(160deg, #0E1D13 0%, #1A2F20 100%);
padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 3rem);
}
.sol-pillars-inner {
max-width: 1100px;
margin: 0 auto;
}
.sol-pillars .sol-section-header h2 {
color: #fff !important;
}
.sol-pillars .sol-section-header p {
color: rgba(255,255,255,.8);
}
.sol-pillars .sol-section-eyebrow {
color: var(–rep-green);
}
.sol-pillars-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.2rem;
}
@media (max-width: 900px) {
.sol-pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
.sol-pillars-grid { grid-template-columns: 1fr; }
}
.sol-pillar {
background: rgba(255,255,255,.05);
border: 1px solid rgba(147,241,201,.12);
border-radius: 14px;
padding: 1.6rem;
transition: background .25s, border-color .25s;
}
.sol-pillar:hover {
background: rgba(147,241,201,.07);
border-color: rgba(147,241,201,.28);
}
.sol-pillar-icon {
width: 48px;
height: 48px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.35rem;
margin-bottom: 1rem;
background: rgba(147,241,201,.12);
color: var(–rep-green);
flex-shrink: 0;
}
.sol-pillar h4 {
color: var(–rep-green) !important;
font-size: .95rem !important;
margin-bottom: .4rem !important;
}
.sol-pillar p {
color: rgba(255,255,255,.8);
font-size: .85rem;
}
/* ────────────────────────────
SECCIÓN: Planes
──────────────────────────── */
.sol-planes {
background: #fff;
padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 3rem);
}
.sol-planes-inner {
max-width: 1100px;
margin: 0 auto;
}
/* Callout de descuento solidario */
.sol-discount-callout {
display: flex;
align-items: center;
justify-content: center;
gap: .6rem;
background: rgba(147,241,201,.13);
border: 1px solid rgba(30,47,35,.13);
border-radius: 50px;
padding: .7rem 1.8rem;
font-size: .92rem;
font-weight: 500;
color: var(–rep-forest);
margin: 0 auto 2.8rem;
max-width: 520px;
}
.sol-discount-callout i { color: var(–rep-teal); font-size: 1.15rem; flex-shrink: 0; }
/* Shortcode pricing dentro de esta sección */
.sol-planes .replanta-plans { max-width: none !important; padding: 0 !important; }
.sol-planes .plans-bar { display: none !important; }
/* ── Reveal animations ── */
.reveal {
opacity: 0;
transform: translateY(28px);
transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
.reveal-left {
opacity: 0;
transform: translateX(-30px);
transition: opacity .55s ease, transform .55s ease;
}
.reveal-left.visible {
opacity: 1;
transform: translateX(0);
}
.reveal-right {
opacity: 0;
transform: translateX(30px);
transition: opacity .55s ease, transform .55s ease;
}
.reveal-right.visible {
opacity: 1;
transform: translateX(0);
}
/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
.sol-aurora-wrap::before,
.sol-particles i,
.sol-hero-card::after,
.sol-badge::after {
animation: none !important;
}
.sol-glow { display: none; }
.sol-criteria li { opacity: 1; transform: none; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0fe5603 *//* ────────────────────────────
SECCIÓN: Testimonial
──────────────────────────── */
.sol-testimonial {
background: var(–rep-bg-light);
padding: clamp(3rem, 5vw, 4.5rem) clamp(1.5rem, 5vw, 3rem);
}
.sol-testimonial-inner {
max-width: 820px;
margin: 0 auto;
text-align: center;
}
.sol-stars {
color: var(–rep-sun);
font-size: 1.4rem;
letter-spacing: .1em;
margin-bottom: 1.5rem;
}
.sol-quote {
font-size: clamp(1rem, 2vw, 1.25rem);
color: var(–rep-forest);
font-style: italic;
line-height: 1.7;
margin-bottom: 2rem;
position: relative;
padding: 0 1rem;
}
.sol-quote::before {
content: ‘201C’;
font-size: 4rem;
color: var(–rep-teal);
opacity: .3;
position: absolute;
top: -1.2rem;
left: -0.5rem;
font-family: Georgia, serif;
line-height: 1;
}
.sol-testimonial-author {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
}
.sol-author-photo {
width: 56px;
height: 56px;
border-radius: 50%;
object-fit: cover;
border: 3px solid var(–rep-green);
}
.sol-author-name {
font-weight: 700;
color: var(–rep-forest);
font-size: .95rem;
}
.sol-author-role {
color: var(–rep-muted);
font-size: .82rem;
}
/* ────────────────────────────
SECCIÓN: Formulario
──────────────────────────── */
.sol-section-eyebrow {
display: inline-block;
color: var(–rep-teal);
font-weight: 700;
font-size: .78rem;
letter-spacing: .12em;
text-transform: uppercase;
margin-bottom: .8rem;
}
.sol-form-section {
background: linear-gradient(135deg, #0E1D13 0%, #16291D 100%);
padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 3rem);
}
.sol-form-inner {
max-width: 700px;
margin: 0 auto;
text-align: center;
}
.sol-form-inner h2 {
color: #fff !important;
font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
margin-bottom: .9rem !important;
}
.sol-form-inner > p {
color: rgba(255,255,255,.85);
margin-bottom: 2.5rem;
font-size: 1rem;
}
.sol-form-box {
background: rgba(255,255,255,.06);
border: 1px solid rgba(147,241,201,.18);
border-radius: 20px;
padding: 2.5rem;
text-align: left;
}
.sol-form-group {
margin-bottom: 1.3rem;
}
.sol-form-group label {
display: block;
color: rgba(255,255,255,.75);
font-size: .85rem;
font-weight: 600;
margin-bottom: .45rem;
}
.sol-form-group input,
.sol-form-group select,
.sol-form-group textarea {
width: 100%;
background: rgba(255,255,255,.07);
border: 1px solid rgba(255,255,255,.15);
border-radius: 10px;
padding: .8rem 1rem;
color: #fff;
font-size: .92rem;
font-family: ‘Inter’, sans-serif;
transition: border-color .2s;
outline: none;
appearance: none;
}
.sol-form-group input::placeholder,
.sol-form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.sol-form-group input:focus,
.sol-form-group select:focus,
.sol-form-group textarea:focus { border-color: var(–rep-green); }
.sol-form-group select option { background: #1E2F23; color: #fff; }
.sol-form-note {
text-align: center;
margin-top: 1.2rem;
color: rgba(255,255,255,.62);
font-size: .78rem;
}
.sol-submit-btn {
width: 100%;
background: var(–rep-green);
color: var(–rep-forest);
font-weight: 700;
font-size: 1rem;
padding: 1rem;
border: none;
border-radius: 999px;
cursor: pointer;
font-family: ‘Inter’, sans-serif;
transition: opacity .2s, transform .2s;
display: flex;
align-items: center;
justify-content: center;
gap: .5rem;
}
.sol-submit-btn:hover:not(:disabled) { opacity: .88; transform: translateY(-1px); }
.sol-submit-btn:disabled { opacity: .55; cursor: not-allowed; }
.sol-msg {
padding: 1rem 1.2rem;
border-radius: 10px;
font-size: .9rem;
margin-bottom: 1rem;
text-align: center;
font-weight: 500;
}
.sol-msg–success {
background: rgba(147,241,201,.15);
border: 1px solid rgba(147,241,201,.35);
color: var(–rep-green);
}
.sol-msg–error {
background: rgba(255,100,80,.12);
border: 1px solid rgba(255,100,80,.3);
color: #ff8a7a;
}
.sol-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
@keyframes sol-spin { to { transform: rotate(360deg); } }
/* ────────────────────────────
SECCIÓN: CTA Final
──────────────────────────── */
.sol-final-cta {
background: #fff;
padding: clamp(3rem, 5vw, 4.5rem) clamp(1.5rem, 5vw, 3rem);
}
.sol-final-cta-inner {
max-width: 800px;
margin: 0 auto;
text-align: center;
}
.sol-final-cta h2 {
font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
color: var(–rep-forest) !important;
margin-bottom: .8rem !important;
}
.sol-final-cta p {
color: var(–rep-muted);
margin-bottom: 2rem;
font-size: 1rem;
}
.sol-cta-row {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 1rem;
}
.sol-btn-green {
display: inline-flex;
align-items: center;
gap: .5rem;
background: var(–rep-green);
color: var(–rep-forest) !important;
font-weight: 700;
font-size: .95rem;
padding: .9rem 2.2rem;
border-radius: 999px;
text-decoration: none !important;
transition: transform .2s, box-shadow .2s;
}
.sol-btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(147,241,201,.35); }
.sol-btn-ghost {
display: inline-flex;
align-items: center;
gap: .5rem;
background: transparent;
border: 2px solid var(–rep-teal);
color: var(–rep-teal) !important;
font-weight: 600;
font-size: .95rem;
padding: .9rem 2rem;
border-radius: 999px;
text-decoration: none !important;
transition: background .2s, color .2s;
}
.sol-btn-ghost:hover { background: var(–rep-teal); color: #fff !important; }
/* ── Reveal animations ── */
.reveal {
opacity: 0;
transform: translateY(28px);
transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}/* End custom CSS */