body {
            font-family: 'Segoe UI', Arial, sans-serif;
            margin: 0;
            padding: 0;
            background: linear-gradient(135deg, #f8f5f2 60%, #ffe5b4 100%);
            min-height: 100vh;
        }
        header {
            background: linear-gradient(90deg, #d2691e 70%, #ffb347 100%);
            color: white;
            padding: 36px 20px 24px 20px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        main {
            padding: 40px 10vw 80px 10vw;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        .contacto {
            background: #fff;
            margin-bottom: 28px;
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(210,105,30,0.07);
            padding: 30px 25px;
            display: inline-block;
            width: 100%;
            max-width: 500px;
        }
        .contacto h2 {
            color: #d2691e;
            margin-bottom: 12px;
            font-size: 1.3em;
            font-weight: bold;
        }
        .contacto p {
            color: #444;
            font-size: 1.08em;
            margin-bottom: 0;
        }
        .mapa {
            margin-bottom: 28px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(210,105,30,0.07);
        }
        iframe {
            border: 0;
            width: 100%;
            height: 400px;
            border-radius: 16px;
        }
        footer {
            background: linear-gradient(90deg, #d2691e 70%, #ffb347 100%);
            color: white;
            text-align: center;
            padding: 14px;
            position: fixed;
            bottom: 0;
            width: 100%;
            font-size: 1em;
            letter-spacing: 1px;
            box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
        }