/* advertorial-limao-alho - page-specific styles */

/* Reset e estilos gerais */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            padding: 0;
            margin: 0;
            background-color: #f9f9f9;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
            background-color: white;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
        }
        
        /* Tipografia */
        h1 {
            font-size: 32px;
            color: #d9534f;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        h2 {
            font-size: 24px;
            color: #0275d8;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eaeaea;
        }
        
        p {
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        strong {
            font-weight: 700;
            color: #0275d8;
        }
        
        /* Imagens */
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            border-radius: 5px;
        }
        
        .selo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin: 20px 0;
            flex-wrap: wrap;
        }
        
        .selo-container img {
            max-height: 80px;
            margin: 0;
        }
        
        /* Listas */
        ul {
            margin: 0 0 20px 20px;
            padding-left: 0;
        }
        
        ol {
            margin: 0 0 20px 0;
            padding-left: 25px;
            max-width: 95%;
            box-sizing: border-box;
        }
        
        li {
            margin-bottom: 10px;
            font-size: 18px;
            padding-left: 5px;
            position: relative;
        }
        
        ol li {
            overflow-wrap: break-word;
            word-wrap: break-word;
            -ms-word-break: break-all;
            word-break: break-word;
            margin-left: 5px;
        }
        
        /* Para dispositivos móveis */
        @media (max-width: 768px) {
            ol {
                padding-left: 25px;
                max-width: 85%;
            }
            
            ol li {
                padding-left: 0;
                margin-left: 0;
            }
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0 30px;
            font-size: 18px;
        }
        
        th, td {
            padding: 15px;
            text-align: left;
            border: 1px solid #ddd;
        }
        
        th {
            background-color: #0275d8;
            color: white;
        }
        
        tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        
        /* Depoimentos */
        .depoimentos {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .depoimento {
            width: 48%;
            padding: 20px;
            background-color: #f9f9f9;
            border-left: 4px solid #0275d8;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        
        .depoimento img {
            border-radius: 5px;
            margin-bottom: 15px;
        }
        
        .depoimento blockquote {
            font-style: italic;
            position: relative;
            font-size: 16px;
        }
        
        .depoimento cite {
            display: block;
            text-align: right;
            font-weight: bold;
            margin-top: 10px;
            color: #0275d8;
        }
        
        /* Benefícios lista */
        .beneficios-lista {
            list-style-type: none;
        }
        
        .beneficios-lista li {
            padding-left: 30px;
            margin-bottom: 15px;
            position: relative;
        }
        
        .beneficios-lista li:before {
            content: "✅";
            position: absolute;
            left: 0;
            color: #5cb85c;
        }
        
        /* CTA Botões */
        .cta-button {
            display: block;
            background-color: #ff5722;
            color: white;
            font-weight: bold;
            text-align: center;
            padding: 20px;
            font-size: 22px;
            text-decoration: none;
            border-radius: 5px;
            margin: 30px auto;
            max-width: 600px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            background-color: #e64a19;
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(0,0,0,0.3);
        }
        
        /* Separadores */
        hr {
            margin: 40px 0;
            border: none;
            height: 1px;
            background-color: #eaeaea;
        }
        
        .footer-note {
            font-size: 14px;
            color: #666;
            font-style: italic;
            text-align: center;
            margin-top: 30px;
        }
        
        @media (max-width: 768px) {
            .depoimento {
                width: 100%;
            }
            .selo-container {
                gap: 10px;
            }
            .selo-container img {
                max-height: 60px;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 22px;
            }
            ol {
                padding-left: 20px;
                max-width: 85%;
            }
            
            ol li {
                padding-left: 0;
                margin-left: 0;
            }
            
            ul {
                padding-left: 5px;
                margin-left: 10px;
            }
        }