/* ==========================================
   0. BASIS VARIABELEN & RESET (Diep Mat Zwart)
   ========================================== */
:root {
    --bg-primary: #080808; /* Diep mat zwart */
    --bg-card: #121212;   /* Subtiel contrast voor kaartjes */
    --bg-alt: #0d0d0d;    /* Voor footers en secties */
    --text-primary: #f2f0eb;
    --text-muted: #bcbcbc;
    --accent-gold: #c5a059;
    --border-color: #222222;
    --input-bg: #141414;
    --input-text: #f2f0eb;
    --input-border: rgba(255, 255, 255, 0.12);
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: var(--font-body);
}

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

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 90px 0;
}

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

/* ==========================================
   TYPOGRAFIE (Uniform)
   ========================================== */
h1, h2, h3, h4 {
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

h1 {
    font-size: 2.4rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.9rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.4;
}

/* Globale Iconen Kleur (Goud) */
i.fa-solid, i.fa-brands, i.fa-regular,
.fa-solid, .fa-brands, .fa-regular {
    color: var(--accent-gold);
}

.subtitle {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent-gold);
    margin-bottom: 12px;
    font-weight: 500;
    font-family: var(--font-body);
}

.divider {
    width: 50px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 15px auto 25px auto;
}

.divider-left {
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 10px 0 20px 0;
}

/* Grids */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-2-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .grid-2-form {
        grid-template-columns: 1fr;
    }
}


/* ==========================================
   1. HEADER & NAVIGATIE
   ========================================== */
.main-header {
    background-color: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar a {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
    color: var(--accent-gold);
}

.btn-nav {
    border: 1px solid var(--accent-gold);
    padding: 8px 18px;
    border-radius: 4px;
    color: var(--accent-gold) !important;
}

.btn-nav:hover {
    background-color: var(--accent-gold);
    color: #080808 !important;
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    .navbar {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background-color: var(--bg-primary);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
        transition: left 0.4s ease;
        border-right: 1px solid var(--border-color);
    }
    .navbar ul {
        flex-direction: column;
        gap: 25px;
    }
    .menu-toggle:checked ~ .navbar {
        left: 0;
    }
    .menu-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}


/* ==========================================
   2. PAGINA TITEL HEADER
   ========================================== */
.page-header {
    background: linear-gradient(rgba(8,8,8,0.75), rgba(8,8,8,0.75)), url('images/slider-1.jpg') center/cover no-repeat;
    padding: 70px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 2.2rem;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 300;
}


/* ==========================================
   3. FORMULIEREN & KNOPPEN
   ========================================== */
.contact-form-wrapper {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background-color: var(--input-bg);
    color: var(--input-text);
    border: 1px solid var(--input-border);
    border-radius: 4px;
    padding: 12px 15px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #080808;
    border: 1px solid var(--accent-gold);
}

.btn-primary:hover {
    background-color: #b08d48;
    border-color: #b08d48;
}

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

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

.btn-block {
    display: block;
    width: 100%;
}


/* ==========================================
   4. MODELLEN GEZOCHT & PINTEREST BORDEN
   ========================================== */
.pinterest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 460px));
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.pinterest-board-card {
    background: #0d0d0d; /* Diep mat zwart */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #222222;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.pinterest-board-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.pinterest-board-card h3 {
    font-size: 1.15rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    text-align: center;
}

/* Metadata-blok met lichte gouden achtergrond en 1px dots randje */
.board-meta {
    background: rgba(197, 160, 89, 0.06);
    border: 1px dotted rgba(197, 160, 89, 0.5);
    border-radius: 6px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 0.88rem;
}

.board-meta-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    padding-bottom: 5px;
}

.board-meta-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.board-meta-label {
    color: var(--accent-gold);
    font-weight: 500;
}

.board-meta-item span:last-child {
    color: var(--text-primary);
    text-align: right;
}

.board-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 300;
}

.pinterest-embed-wrapper {
    text-align: center;
    background: #080808;
    padding: 15px;
    border-radius: 6px;
    border: 1px dashed var(--border-color);
}

.comfort-levels-box, .process-steps-box {
    background: rgba(18, 18, 18, 0.9);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.parent-guardian-box {
    display: none;
    background-color: var(--bg-card);
    border: 1px solid var(--accent-gold);
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
}

.parent-guardian-box h4 {
    color: var(--accent-gold);
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.website-hp-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
    overflow: hidden;
}

.file-hint {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 10px;
}

.file-upload-box {
    position: relative;
    border: 2px dashed var(--border-color);
    border-radius: 6px;
    padding: 30px 20px;
    text-align: center;
    background-color: var(--input-bg);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.file-upload-box:hover {
    border-color: var(--accent-gold);
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
    display: block;
}

.upload-text {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.upload-types {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.checkbox-group {
    margin-bottom: 25px;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 3px;
}

.custom-checkbox:hover input ~ .checkmark {
    border-color: var(--accent-gold);
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #080808;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.privacy-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.privacy-guarantee h4 {
    color: var(--accent-gold);
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1rem;
}

.privacy-guarantee p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}


/* ==========================================
   5. SPECIALITEITEN & OVERIGE PAGINA'S
   ========================================== */
.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.specialty-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.specialty-card i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.specialty-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.specialty-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 300;
}


/* ==========================================
   6. HERO SECTIE & TARIEVEN
   ========================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 85px);
    background-color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section .slide.active {
    opacity: 1;
}

/* Hero Overlay met Verticale Gradatie */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(8, 8, 8, 0.5) 0%, 
        rgba(8, 8, 8, 0.3) 50%, 
        rgba(8, 8, 8, 0.55) 100%
    );
    z-index: 2;
}

.pricing-overlay-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 750px;
    padding: 0 20px;
    margin: 0 auto;
}

/* Tekst-overlay-box */
.pricing-card {
    background: linear-gradient(to top, rgba(12, 12, 12, 0.6) 0%, rgba(18, 18, 18, 0.5) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    text-align: center;
    color: var(--text-primary);
}

.price-tag {
    font-size: 2.3rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin: 8px 0 2px 0;
}

.price-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-weight: 300;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 auto 20px auto;
    text-align: left;
    display: inline-block;
}

.price-features li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.88rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-features li i {
    color: var(--accent-gold);
}

.hero-section .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(8, 8, 8, 0.6);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.hero-section .slider-arrow:hover {
    background: var(--accent-gold);
    color: #080808;
    border-color: var(--accent-gold);
}

.hero-section .prev-arrow { left: 20px; }
.hero-section .next-arrow { right: 20px; }

.hero-section .slider-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-section .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-section .indicator.active {
    background: var(--accent-gold);
    transform: scale(1.2);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    border-top: 1px solid var(--accent-gold);
    padding: 15px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.6);
    transition: bottom 0.4s ease-in-out;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-banner p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 50px 0;
    }
    .hero-section .slider-arrow {
        display: none;
    }
    .cookie-container {
        flex-direction: column;
        text-align: center;
    }
}


/* ==========================================
   7. FAQ & FOOTER
   ========================================== */
.faq-section {
    padding: 90px 0;
    background-color: var(--bg-alt);
    color: var(--text-primary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-gold);
}

.faq-question {
    padding: 20px 25px;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    color: var(--text-primary);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 25px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}

.faq-item.active .faq-answer {
    max-height: 480px;
    padding: 0 25px 20px 25px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.main-footer {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px 0;
    color: var(--text-muted);
}

.main-footer h3 {
    color: var(--text-primary);
    font-size: 1.15rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.main-footer p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.6;
    font-weight: 300;
}

.main-footer .meta-info {
    margin-top: 15px;
    color: var(--text-primary);
}

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

.main-footer ul li {
    margin-bottom: 8px;
}

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

.main-footer ul li a:hover {
    color: var(--accent-gold);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #080808;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: #777;
    font-weight: 300;
}


/* ==========================================
   STROOMSCHEMA (Over Mij - Expertise)
   ========================================== */
.flowchart-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.flowchart-step {
    background: rgba(197, 160, 89, 0.04); /* Subtiele lichte gouden gloed */
    border: 1px dotted rgba(197, 160, 89, 0.5); /* Donkerder gouden randje van 1px dots */
    border-radius: 8px;
    padding: 25px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.flowchart-step:hover {
    border-color: var(--accent-gold);
    transform: translateY(-25px);
}

.flowchart-step-number {
    position: absolute;
    top: -15px;
    left: 25px;
    background: var(--accent-gold);
    color: #080808;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.flowchart-step h4 {
    color: var(--accent-gold);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.flowchart-step p {
    color: var(--text-muted);
    font-weight: 300;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Verbindingsteken / Pijl tussen de stappen voor desktop */
@media (min-width: 768px) {
    .flowchart-step:not(:last-child):after {
        content: "\f078"; /* FontAwesome chevron-down icoon */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        bottom: -22px;
        left: 50%;
        transform: translateX(-50%);
        color: var(--accent-gold);
        font-size: 0.85rem;
        background: var(--bg-alt);
        padding: 0 5px;
        z-index: 2;
    }
}

/* ==========================================
   FOTO OVERLAY MET VERTICALE GRADATIE
   ========================================== */
.photographer-photo-card {
    position: relative;
    overflow: hidden;
}

.photographer-photo-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.photographer-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Dekt de gehele foto af voor de gradatie */
    background: linear-gradient(to top, rgba(8, 8, 8, 0.85) 0%, rgba(8, 8, 8, 0.4) 50%, rgba(8, 8, 8, 0) 100%);
    opacity: 0.9; /* 50% tot subtiele transparantie basis */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Plaatst de tekst onderin de foto */
    padding: 20px;
    border-radius: 6px;
    transition: opacity 0.3s ease;
}