/* ========================================
   CARTA DIGITAL ESTILO PDF – Línea a línea
   ======================================== */

.carta-pdf-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.carta-pdf-container::before {
    content: "Un Toque Gallego";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 100px;
    font-weight: 900;
    color: rgba(212, 160, 23, 0.06);
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
}

.carta-pdf-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #d4a017;
    position: relative;
    z-index: 1;
}

.carta-pdf-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #021f3c;
    margin: 0;
    font-weight: 700;
}

.carta-pdf-header .subtitle {
    font-size: 1.1rem;
    color: #d4a017;
    margin: 8px 0 0;
    font-weight: 600;
}

.carta-pdf-header .phones {
    margin-top: 10px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #021f3c;
}

.carta-pdf-section {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.carta-pdf-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #021f3c;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4a017;
    font-weight: 700;
}

.carta-pdf-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dotted #ddd;
    font-size: 1.05rem;
    transition: background 0.2s;
}

.carta-pdf-line:hover {
    background: rgba(212, 160, 23, 0.05);
}

.carta-pdf-line .name {
    flex: 1;
    font-weight: 500;
    color: #2d3748;
}

.carta-pdf-line .price {
    font-weight: 700;
    color: #d4a017;
    min-width: 80px;
    text-align: right;
}

.carta-pdf-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #d4a017;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .carta-pdf-container {
        margin: 20px 15px;
        padding: 30px 20px;
    }
    .carta-pdf-header h1 { font-size: 2.2rem; }
    .carta-pdf-header .phones { font-size: 1.2rem; }
    .carta-pdf-section h2 { font-size: 1.6rem; }
    .carta-pdf-line { flex-direction: column; align-items: flex-start; gap: 4px; }
    .carta-pdf-line .price { text-align: left; }
    .carta-pdf-container::before { font-size: 70px; }
}

/* ============================================= */
/* PARA LLEVAR – Estilo idéntico al resto de secciones */
/* ============================================= */

.para-llevar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 32px;
    margin: 50px 0;
}

.para-llevar-card {
    background: white;
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(0,0,0,0.09);
    transition: all 0.3s ease;
    border: 1px solid #f5f5f5;
}

.para-llevar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.13);
}

.para-llevar-icon {
    font-size: 3.6rem;
    margin-bottom: 20px;
    color: #d4a017;
}

.para-llevar-icon.whatsapp {
    color: #25d366;
}

.para-llevar-card h3 {
    color: #021f3c;
    font-size: 1.5rem;
    margin: 0 0 12px;
    font-weight: 600;
}

.para-llevar-card .phone-big {
    font-size: 2.1rem;
    font-weight: 700;
    margin: 15px 0;
}

.para-llevar-card .phone-big a {
    color: #d4a017;
    text-decoration: none;
}

.para-llevar-card .btn-whatsapp {
    margin-top: 15px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
}

/* Caja destacada simple */
.highlight-simple {
    background: #fff9f0;
    border: 2px solid #d4a017;
    border-radius: 18px;
    padding: 35px 30px;
    text-align: center;
    margin: 60px 0 20px;
    font-size: 1.35rem;
    line-height: 1.7;
    color: #021f3c;
}

.highlight-simple .big {
    margin: 0;
    font-weight: 600;
}

.highlight-simple i {
    color: #d4a017;
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .para-llevar-card {
        padding: 35px 25px;
    }
    .para-llevar-icon {
        font-size: 3.2rem;
    }
    .phone-big {
        font-size: 1.9rem;
    }
}
