/* ============================================
   XAIME DA PENA - ESTILOS PRINCIPALES
   Colores corporativos DP Abogados
   ============================================ */

:root {
    /* Colores corporativos DP Abogados */
    --color-primary: #1a2a4a;
    --color-primary-dark: #0f1a2e;
    --color-primary-light: #2a3d5f;
    --color-accent: #c8a45c;
    --color-accent-light: #dfc88a;
    --color-accent-dark: #a8863c;
    
    /* Neutros */
    --color-white: #ffffff;
    --color-text: #f5f5f5;
    --color-text-muted: #a0a8b8;
    --color-bg: #0a1220;
    --color-bg-card: #141f30;
    --color-border: rgba(255, 255, 255, 0.08);
    
    /* Tipografías */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   RESET Y BASE
   ============================================ */

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

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

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

/* Textura de ruido sutil */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 1000;
}

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

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

ul, ol {
    list-style: none;
}

/* ============================================
   TIPOGRAFÍA
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h1 strong, h2 strong, h3 strong {
    font-weight: 600;
    color: var(--color-accent);
}

p {
    margin-bottom: 1rem;
}

.text-accent {
    color: var(--color-accent);
}

.text-muted {
    color: var(--color-text-muted);
}

/* ============================================
   HEADER / NAVEGACIÓN
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10, 18, 32, 0.98), rgba(10, 18, 32, 0.9));
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.header.scrolled {
    padding: 0.75rem 4rem;
    background: rgba(10, 18, 32, 0.98);
}

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

.logo img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.logo-text span {
    color: var(--color-accent);
}

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

.nav a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav a:hover,
.nav a.active {
    color: var(--color-text);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav-cta {
    padding: 0.75rem 1.5rem !important;
    background: var(--color-accent);
    color: var(--color-primary-dark) !important;
    font-weight: 600 !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--color-accent-light);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ============================================
   BOTONES
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-primary-dark);
}

.btn-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 164, 92, 0.25);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-outline:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 70%;
    height: 130%;
    background: radial-gradient(ellipse at center, rgba(200, 164, 92, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 750px;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(200, 164, 92, 0.1);
    border: 1px solid rgba(200, 164, 92, 0.3);
    border-radius: 2rem;
    margin-bottom: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out;
}

.hero-tag::before {
    content: '★';
    font-size: 0.65rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Hero con imagen de fondo */
.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--color-bg) 0%, rgba(10, 18, 32, 0.7) 50%, rgba(10, 18, 32, 0.3) 100%);
    z-index: 1;
}

/* Page Hero (más pequeño) */
.page-hero {
    min-height: auto;
    padding: 10rem 4rem 4rem;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-bg) 100%);
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero .hero-subtitle {
    margin-bottom: 0;
}

/* ============================================
   SECCIONES
   ============================================ */

.section {
    padding: var(--spacing-xl) var(--spacing-lg);
}

.section-dark {
    background: var(--color-primary-dark);
}

.section-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-bg) 100%);
}

.section-header {
    max-width: 700px;
    margin-bottom: var(--spacing-lg);
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    display: block;
}

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

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: var(--spacing-lg);
    background: var(--color-primary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ============================================
   CARDS
   ============================================ */

.card {
    padding: 2.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 164, 92, 0.3);
}

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

.card-icon {
    width: 55px;
    height: 55px;
    background: rgba(200, 164, 92, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.card h3 {
    margin-bottom: 1rem;
}

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

.card ul {
    margin-top: 1.5rem;
}

.card li {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card li::before {
    content: '→';
    color: var(--color-accent);
}

/* ============================================
   GRIDS
   ============================================ */

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ============================================
   ABOUT / BIO
   ============================================ */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-text p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.about-text p:first-of-type {
    font-size: 1.2rem;
    color: var(--color-text);
}

.about-image {
    position: relative;
}

.about-image-frame {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border: 1px solid rgba(200, 164, 92, 0.2);
}

.about-image-frame::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--color-accent);
    z-index: 2;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder para imagen */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder .initials {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 600;
    color: rgba(200, 164, 92, 0.15);
    letter-spacing: 0.1em;
}

.award-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    padding: 1.5rem;
    text-align: center;
    z-index: 3;
}

.award-badge-year {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.award-badge-text {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* ============================================
   TIMELINE
   ============================================ */

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translateX(-5px);
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.timeline-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

/* ============================================
   CASOS DE ÉXITO
   ============================================ */

.case-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 2rem;
    transition: all var(--transition-base);
}

.case-card:hover {
    border-color: rgba(200, 164, 92, 0.3);
    transform: translateY(-3px);
}

.case-result {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.case-type {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.case-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

/* ============================================
   FAQ
   ============================================ */

.faq-item {
    padding: 2rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    margin-bottom: 1rem;
}

.faq-item h3 {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   UBICACIONES
   ============================================ */

.location-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all var(--transition-base);
}

.location-card:hover {
    border-color: rgba(200, 164, 92, 0.3);
}

.location-card.main {
    border-color: var(--color-accent);
    position: relative;
}

.location-card.main::after {
    content: 'Sede Principal';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-accent);
    color: var(--color-primary-dark);
    padding: 0.25rem 1rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.location-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.location-card .address {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.location-card .phone {
    color: var(--color-accent);
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.location-card .phone a:hover {
    text-decoration: underline;
}

.location-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

/* ============================================
   CONTACTO
   ============================================ */

.contact-section {
    text-align: center;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.contact-method {
    text-align: center;
}

.contact-method-label {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.contact-method-value {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-accent);
}

.contact-method-value a:hover {
    text-decoration: underline;
}

/* Formulario */
.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 1.25rem;
    transition: all var(--transition-base);
}

.social-links a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-3px);
}

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

.footer {
    padding: 4rem;
    background: var(--color-primary-dark);
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin: 0;
}

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

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ============================================
   ANIMACIONES
   ============================================ */

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .header {
        padding: 1rem 2rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-primary-dark);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--color-border);
    }
    
    .nav.active {
        display: flex;
    }
    
    .hero {
        padding: 7rem 2rem 4rem;
    }
    
    .hero-image {
        width: 100%;
        height: 40%;
        top: auto;
        bottom: 0;
    }
    
    .hero-image::before {
        background: linear-gradient(to bottom, var(--color-bg) 0%, rgba(10, 18, 32, 0.8) 100%);
    }
    
    .section {
        padding: 4rem 2rem;
    }
    
    .page-hero {
        padding: 8rem 2rem 3rem;
    }
    
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .footer {
        padding: 2rem 1rem;
    }
}
